From 1ce0fcbd7be27b81ff919500a08fb570bd624fbb Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Fri, 19 Jan 2024 12:29:59 -0600 Subject: Add LICENSE Signed-off-by: Matt Strapp --- LICENSE | 21 +++++++++++++++++++++ clients/www/package.json | 2 +- packages/zorascript/package.json | 4 ++-- packages/zorascript/src/enums.ts | 4 ++-- 4 files changed, 26 insertions(+), 5 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..f328a5d --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 Matthew Strapp + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/clients/www/package.json b/clients/www/package.json index 98a3e0e..ec7075a 100644 --- a/clients/www/package.json +++ b/clients/www/package.json @@ -3,6 +3,7 @@ "description": "The actual website", "version": "0.0.1", "private": true, + "license": "MIT", "scripts": { "dev": "vite dev", "build": "vite build && cp .svelte-kit/output/server/sw.js.map .svelte-kit/output/server/workbox-*.map build/", @@ -15,7 +16,6 @@ "devDependencies": { "@skeletonlabs/skeleton": "2.7.1", "@skeletonlabs/tw-plugin": "0.3.1", - "@sveltejs/adapter-auto": "^3.1.0", "@sveltejs/adapter-static": "^3.0.1", "@sveltejs/kit": "^2.4.0", "@sveltejs/vite-plugin-svelte": "^3.0.1", diff --git a/packages/zorascript/package.json b/packages/zorascript/package.json index 109c866..ad5ce4a 100644 --- a/packages/zorascript/package.json +++ b/packages/zorascript/package.json @@ -7,8 +7,8 @@ "test": "echo \"Error: no test specified\" && exit 1" }, "keywords": [], - "author": "", - "license": "ISC", + "author": "Matt Strapp ", + "license": "MIT", "devDependencies": { } diff --git a/packages/zorascript/src/enums.ts b/packages/zorascript/src/enums.ts index 2d055a6..5d70b62 100644 --- a/packages/zorascript/src/enums.ts +++ b/packages/zorascript/src/enums.ts @@ -15,8 +15,8 @@ const enum GameRegion { * Specifies the specific Oracle game */ const enum Game { - Ages = "Oracle of Ages", - Seasons = "Oracle of Seasons" + Ages = 0, + Seasons = 1 } const enum Animal { -- cgit v1.2.3