@roomkit/state 1.1.0 → 1.1.2

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 (1) hide show
  1. package/package.json +10 -10
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@roomkit/state",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "description": "High-performance state synchronization library inspired by Colyseus Schema",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -24,6 +24,14 @@
24
24
  "import": "./dist/encoding/index.js"
25
25
  }
26
26
  },
27
+ "scripts": {
28
+ "build": "tsc",
29
+ "build:examples": "tsc --project tsconfig.examples.json",
30
+ "dev": "tsc --watch",
31
+ "clean": "rm -rf dist dist-examples",
32
+ "benchmark": "pnpm build:examples && node dist-examples/benchmarks/performance.js",
33
+ "test": "jest"
34
+ },
27
35
  "keywords": [
28
36
  "state",
29
37
  "synchronization",
@@ -62,13 +70,5 @@
62
70
  "@types/node": "^20.10.0",
63
71
  "@types/pako": "^2.0.3",
64
72
  "typescript": "^5.3.3"
65
- },
66
- "scripts": {
67
- "build": "tsc",
68
- "build:examples": "tsc --project tsconfig.examples.json",
69
- "dev": "tsc --watch",
70
- "clean": "rm -rf dist dist-examples",
71
- "benchmark": "pnpm build:examples && node dist-examples/benchmarks/performance.js",
72
- "test": "jest"
73
73
  }
74
- }
74
+ }