-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
96 lines (96 loc) · 2.56 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "sirdez",
"version": "0.1.1",
"main": "build/node.js",
"module": "dist/sirdez.es.js",
"sideEffects": false,
"exports": {
".": {
"node": "./build/node.js",
"import": "./dist/sirdez.es.js"
},
"./eval": {
"node": "./build/node_eval.js",
"import": "./dist/sirdez.eval.es.js"
}
},
"scripts": {
"ci": "yarn install --immutable --immutable-cache --check-cache",
"lint": "eslint .",
"format": "prettier --write .",
"test": "jest --coverage",
"verify": "run-p format lint test",
"perf": "sh perf/run.sh",
"badges": "ts-node scripts/badges",
"clean": "rm -rf dist deno_dist build docs",
"build:web:common": "vite build",
"build:web:eval": "vite build --mode eval",
"build:web": "run-p build:web:*",
"build:deno": "denoify --out deno_dist",
"build:node": "tsc",
"build": "run-p build:*",
"docs:dev": "vuepress dev doc",
"docs": "vuepress build doc && cp -r docs/.vuepress/* docs && rm -r docs/.vuepress",
"api": "typedoc",
"readme": "cp README.md doc/README.md",
"build_and_docs": "run-p build docs api"
},
"devDependencies": {
"@msgpack/msgpack": "^2.8.0",
"@types/benchmark": "^2.1.1",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.7",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"avsc": "^5.7.3",
"benchmark": "^2.1.4",
"chart.js": "^3.9.1",
"denoify": "^0.10.6",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"jest": "^27.4.7",
"jest-html-reporters": "^3.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typedoc": "^0.22.10",
"typescript": "4.5.4",
"vite": "^2.7.10",
"vuepress": "^1.9.5",
"vuepress-plugin-one-click-copy": "^1.0.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weisrc/sirdez.git"
},
"keywords": [
"binary",
"buffer",
"encoding",
"decoding",
"serde",
"schema",
"data",
"sirdez",
"message",
"protocol",
"marshalling",
"serialization",
"json",
"rpc",
"ipc",
"treeshakable"
],
"author": "weisrc",
"license": "MIT",
"bugs": {
"url": "https://github.com/weisrc/sirdez/issues"
},
"homepage": "https://github.com/weisrc/sirdez#readme",
"description": "Glorious Binary Serialization and Deserialization for TypeScript.",
"dependencies": {}
}