diff options
author | Matt Strapp <matt@mattstrapp.net> | 2024-01-19 12:29:59 -0600 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2024-01-19 12:30:17 -0600 |
commit | 1ce0fcbd7be27b81ff919500a08fb570bd624fbb (patch) | |
tree | c596b12eba189801a503cfe43565a82b8c1fd991 | |
parent | Upgrade to SvelteKit 2 (diff) | |
download | zorascript-1ce0fcbd7be27b81ff919500a08fb570bd624fbb.tar zorascript-1ce0fcbd7be27b81ff919500a08fb570bd624fbb.tar.gz zorascript-1ce0fcbd7be27b81ff919500a08fb570bd624fbb.tar.bz2 zorascript-1ce0fcbd7be27b81ff919500a08fb570bd624fbb.tar.lz zorascript-1ce0fcbd7be27b81ff919500a08fb570bd624fbb.tar.xz zorascript-1ce0fcbd7be27b81ff919500a08fb570bd624fbb.tar.zst zorascript-1ce0fcbd7be27b81ff919500a08fb570bd624fbb.zip |
Add LICENSE
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
-rw-r--r-- | LICENSE | 21 | ||||
-rw-r--r-- | clients/www/package.json | 2 | ||||
-rw-r--r-- | packages/zorascript/package.json | 4 | ||||
-rw-r--r-- | packages/zorascript/src/enums.ts | 4 |
4 files changed, 26 insertions, 5 deletions
@@ -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 <matt@mattstrapp.net>", + "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 { |