-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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
{
"name": "seqproto",
"version": "0.2.3",
"type": "module",
"description": "More than fast serialization / deserialization utility for your structured data",
"main": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts",
"license": "Apache-2.0",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs"
},
"files": [
"dist"
],
"scripts": {
"build": "npm run build:cjs && npm run build:esm && npm run rename:cjs",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"rename:cjs": "mv ./dist/cjs/index.js ./dist/cjs/index.cjs",
"lint": "ts-standard",
"benchmark:ser": "node --import tsx benchmarks/isolated/ser.benchmark.ts",
"benchmark:des": "node --import tsx benchmarks/isolated/des.benchmark.ts",
"benchmark:serdes": "node --import tsx benchmarks/isolated/serdes.benchmark.ts",
"test": "node --import tsx tests/*.test.ts"
},
"keywords": [
"serialization",
"deserialization",
"performance",
"structured",
"protocol",
"json"
],
"author": {
"name": "Tommaso Allevi",
"email": "[email protected]",
"url": "https://github.com/allevo",
"author": true
},
"engines": {
"node": ">= 20.0.0"
},
"devDependencies": {
"ts-standard": "^12.0.2",
"tsx": "^3.14.0",
"typescript": "^5.2.2"
},
"ts-standard": {
"ignore": [
"benchmarks/e2e"
]
}
}