bigstate.client.javascript 0.0.1
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.
- package/LICENSE.md +14 -0
- package/README.md +1 -0
- package/package.json +50 -0
package/LICENSE.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Proprietary License
|
|
2
|
+
|
|
3
|
+
This software is licensed under a proprietary license.
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to use
|
|
7
|
+
the Software solely for personal, non-commercial purposes, subject to the following conditions:
|
|
8
|
+
|
|
9
|
+
1. The Software may not be modified, distributed, or sublicensed without prior written permission.
|
|
10
|
+
2. The Software is provided "as is", without warranty of any kind.
|
|
11
|
+
|
|
12
|
+
For more information, contact the author.
|
|
13
|
+
|
|
14
|
+
© 2024 Your Company Name. All rights reserved.
|
package/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
bsdev
|
package/package.json
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "bigstate.client.javascript",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "dist/index.cjs.js",
|
|
6
|
+
"module": "dist/index.esm.js",
|
|
7
|
+
"browser": "dist/index.umd.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"import": "./dist/index.esm.js",
|
|
16
|
+
"require": "./dist/index.cjs.js",
|
|
17
|
+
"browser": "./dist/index.umd.js"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"scripts": {
|
|
21
|
+
"format": "prettier --write \"src/**/*.ts\"",
|
|
22
|
+
"build": "npm run format && rollup -c",
|
|
23
|
+
"pack": "npm run build && npm pack",
|
|
24
|
+
"publish:package": "npm publish --access public",
|
|
25
|
+
"versionPatch": "npm version patch",
|
|
26
|
+
"versionMinor": "npm version minor",
|
|
27
|
+
"versionMajor": "npm version major"
|
|
28
|
+
},
|
|
29
|
+
"keywords": [],
|
|
30
|
+
"author": "platfoza",
|
|
31
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@rollup/plugin-commonjs": "^28.0.2",
|
|
34
|
+
"@rollup/plugin-node-resolve": "^16.0.0",
|
|
35
|
+
"@rollup/plugin-typescript": "^12.1.2",
|
|
36
|
+
"@types/node": "^20.14.5",
|
|
37
|
+
"@types/ws": "^8.5.10",
|
|
38
|
+
"prettier": "^3.3.2",
|
|
39
|
+
"rollup": "^2.79.2",
|
|
40
|
+
"rollup-plugin-terser": "^7.0.2",
|
|
41
|
+
"typescript": "^5.7.3"
|
|
42
|
+
},
|
|
43
|
+
"private": false,
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"bufferutil": "^4.0.8",
|
|
46
|
+
"tslib": "^2.8.1",
|
|
47
|
+
"utf-8-validate": "^6.0.4",
|
|
48
|
+
"ws": "^8.17.1"
|
|
49
|
+
}
|
|
50
|
+
}
|