forked from moltar/typescript-runtime-type-benchmarks
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 3.48 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
97
98
99
100
101
102
103
104
105
106
107
108
{
"private": true,
"name": "typescript-runtime-type-benchmarks",
"description": "Benchmark Comparison of TypeScript Runtime Type Support Modules",
"license": "MIT",
"author": {
"name": "Roman Filippov",
"email": "[email protected]"
},
"version": "1.0.0",
"scripts": {
"lint": "gts check",
"lint:fix": "gts fix",
"start": "ts-node index.ts",
"test:build": "npm run compile:spectypes && npm run compile:ts-runtime-checks && npm run compile:typebox && npm run compile:typia && tsc --noEmit",
"test": "npm run compile:spectypes && npm run compile:ts-runtime-checks && npm run compile:typebox && npm run compile:typia && jest",
"docs:serve": "serve docs",
"docs:watch": "tsc --project tsconfig.docs.json --watch --preserveWatchOutput & serve docs",
"docs:build": "tsc --project tsconfig.docs.json",
"compile:spectypes": "rimraf cases/spectypes/build && tsc -p cases/spectypes/src && babel cases/spectypes/src --out-dir cases/spectypes/build --extensions \".ts\"",
"compile:ts-runtime-checks": "rimraf cases/ts-runtime-checks/build && tsc -p cases/ts-runtime-checks/src",
"compile:typebox": "ts-node cases/typebox/index.ts cases/typebox/build",
"compile:typia": "rimraf cases/typia/build && tsc -p cases/typia/tsconfig.json",
"prepare": "ts-patch install"
},
"dependencies": {
"@ailabs/ts-utils": "1.4.0",
"@badrap/valita": "0.2.10",
"@mojotech/json-type-validation": "3.1.0",
"@sapphire/shapeshift": "3.9.2",
"@sinclair/typebox": "0.31.9",
"@skarab/tson": "1.5.1",
"@toi/toi": "1.3.0",
"@typeofweb/schema": "0.7.3",
"@types/benchmark": "2.1.2",
"ajv": "8.12.0",
"benny": "3.7.1",
"bueno": "0.1.5",
"class-transformer": "0.5.1",
"class-transformer-validator": "0.9.1",
"class-validator": "0.14.0",
"clone": "2.1.2",
"computed-types": "1.11.2",
"csv-stringify": "5.6.5",
"decoders": "1.25.5",
"fp-ts": "2.16.1",
"io-ts": "2.2.20",
"jointz": "7.0.4",
"json-decoder": "1.4.1",
"mol_data_all": "1.1.830",
"myzod": "1.10.1",
"ok-computer": "1.0.4",
"parse-dont-validate": "4.0.0",
"preact": "10.17.1",
"purify-ts": "1.3.5",
"r-assign": "1.9.0",
"reflect-metadata": "0.1.13",
"rescript": "10.1.4",
"rescript-struct": "4.1.1",
"rulr": "8.7.6",
"runtypes": "6.7.0",
"serve": "12.0.1",
"simple-runtypes": "7.1.3",
"spectypes": "2.1.11",
"succulent": "0.18.1",
"superstruct": "1.0.3",
"suretype": "1.2.0",
"svgo": "2.8.0",
"to-typed": "0.5.0",
"ts-interface-checker": "1.0.2",
"ts-json-validator": "0.7.1",
"ts-node": "10.9.1",
"ts-runtime-checks": "0.4.0",
"typescript": "5.1.6",
"typia": "5.0.1",
"valibot": "0.13.1",
"vality": "6.3.3",
"vega": "5.25.0",
"vega-lite": "5.11.0",
"yup": "0.32.11",
"zod": "3.21.4"
},
"devDependencies": {
"@babel/cli": "7.22.15",
"@babel/core": "7.22.15",
"@babel/preset-env": "7.22.15",
"@babel/preset-typescript": "7.22.15",
"@types/clone": "2.1.1",
"@types/jest": "29.5.4",
"@types/node": "^18.11.18",
"@types/svgo": "2.6.0",
"@types/ts-expose-internals": "npm:[email protected]",
"@types/yup": "0.29.14",
"babel-plugin-spectypes": "2.1.11",
"expect-type": "0.16.0",
"gts": "3.1.1",
"jest": "29.6.4",
"rimraf": "5.0.1",
"ts-jest": "29.1.1",
"ts-patch": "^3.0.1",
"tsconfigs": "4.0.2"
},
"keywords": [
"benchmarks",
"types",
"typescript"
]
}