@accelbyte/error-translator 0.1.1-alpha.55 → 0.1.1-alpha.56

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/CHANGELOG.md +5 -1
  2. package/LICENSE +19 -0
  3. package/package.json +3 -2
package/CHANGELOG.md CHANGED
@@ -1,7 +1,11 @@
1
+ ### 0.1.1-alpha.56 - 2023-02-09
2
+
3
+ - Added License file
4
+
1
5
  ### 0.1.1-alpha.55 - 2023-02-01
2
6
 
3
7
  - Bump i18next and react-i18next
4
8
 
5
9
  ### 0.1.1-alpha.54 - 2023-01-30
6
10
 
7
- - Initial commit
11
+ - Initial commit
package/LICENSE ADDED
@@ -0,0 +1,19 @@
1
+ AccelByte Development Code License
2
+
3
+ This development code license agreement (“Agreement”) is between you and AccelByte, Inc. ("AccelByte"), and governs your use of the library, sample code or other software that is accompanied by this license (the "Licensed Software"). By using the Licensed Software, you agree to be bound by the terms of this Agreement. If you do not agree to the terms of this Agreement, do not use the Licensed Software.
4
+
5
+ 1. License Grant. AccelByte hereby grants you a revocable, non-exclusive, non-sublicensable, non-transferrable license to use the Licensed Software, solely to develop your own games that are designed to operate on the AccelByte platform (available under a separate agreement), and solely as needed to enable that operation.
6
+
7
+ 2. Restrictions. Except as expressly permitted in this Agreement, you may not: (a) copy, modify, or create derivative works of the Licensed Software; (b) distribute, sublicense, lease, rent, loan, or otherwise transfer the Licensed Software or any rights granted under this Agreement; (c) reverse engineer, decompile, or disassemble the Licensed Software; or (d) make the functionality of the Licensed Software available to any third party.
8
+
9
+ 3. Termination. This Agreement will remain in effect until terminated by you or AccelByte. AccelByte may terminate this Agreement at any time for any reason. Upon termination of this Agreement, you must cease all use of the Licensed Software and destroy all copies of the Licensed Software in your possession or control.
10
+
11
+ 4. Proprietary Rights. The Licensed Software is owned and copyrighted by AccelByte. Your license to use the Licensed Software does not grant you any right, title, or interest in or to the Licensed Software, except for the limited rights expressly granted in this Agreement.
12
+
13
+ 5. Disclaimer of Warranties. THE LICENSED SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, ACCELBYTE DISCLAIMS ALL WARRANTIES, WHETHER EXPRESS, IMPLIED, OR STATUTORY, INCLUDING THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
14
+
15
+ 6. Limitation of Liability. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT SHALL ACCELBYTE BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE, OR CONSEQUENTIAL DAMAGES, OR ANY OTHER DAMAGES OF ANY KIND, ARISING FROM OR RELATED TO THIS AGREEMENT OR THE SDK, WHETHER IN CONTRACT, TORT, OR OTHERWISE, EVEN IF ACCELBYTE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
16
+
17
+ 7. Governing Law. This Agreement will be governed by and construed in accordance with the laws of the state of Washington in the United States of America, without regard to its conflict of law provisions.
18
+
19
+ 8. Contact Information. If you have any questions about this Agreement, please contact AccelByte at: hello@accelbyte.io. Last updated: October 26, 2022
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "@accelbyte/error-translator",
3
- "version": "0.1.1-alpha.55",
3
+ "version": "0.1.1-alpha.56",
4
4
  "author": "AccelByte Inc",
5
5
  "license": "AccelByte License",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.es.js",
8
8
  "types": "./dist/types/index.d.ts",
9
9
  "scripts": {
10
- "build": "rollup -c rollup.config.mjs"
10
+ "build": "rollup -c rollup.config.mjs",
11
+ "test": "echo 'Not implemented yet'"
11
12
  },
12
13
  "engines": {
13
14
  "node": ">=16"