-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.01 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "packme-js",
"version": "2.0.0",
"description": "Blazing fast binary serialization via auto-generated classes from simple JSON manifest files.",
"type": "module",
"module": "dist/packme.min.js",
"exports": {
".": {
"import": "./dist/packme.min.js"
}
},
"bin": {
"packme": "bin/compile.js"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"example": "node example/example.mjs",
"compile": "node bin/compile.js example example/generated",
"test": "vitest"
},
"keywords": [
"binary",
"protocol",
"binary-protocol",
"pack",
"unpack",
"message-pack",
"buffer",
"encoding",
"decoding",
"serialization",
"structured-data",
"performance",
"data-transfer",
"data-stream",
"networking"
],
"repository": {
"type": "git",
"url": "git://github.com/sourcecaster/packme.js.git"
},
"author": "sourcecaster <[email protected]>",
"license": "MIT",
"devDependencies": {
"rollup": "^2.55.1",
"rollup-plugin-terser": "^7.0.2",
"vitest": "^3.0.6"
}
}