-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 1.77 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
{
"name": "@duplojs/zod-accelerator",
"version": "0.0.0",
"author": "mathcovax",
"license": "ISC",
"type": "module",
"repository": "https://github.com/duplojs/zod-accelerator",
"scripts": {
"build:scripts": "rollup --config",
"build:types": "tsc -p tsconfig.types.json",
"build": "npm run build:types && npm run build:scripts",
"test:tu": "vitest --coverage",
"test:tu:watch": "vitest --coverage --watch",
"test:bench": "tsx benchmark/string.bench.ts && tsx benchmark/object.bench.ts && tsx benchmark/array.bench.ts && tsx benchmark/union.bench.ts",
"test:types": "npm run test:types:scripts",
"test:types:scripts": "tsc",
"test:lint": "eslint",
"test:lint:fix": "eslint --fix",
"prepare": "husky"
},
"types": "./types/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./types/index.d.ts"
}
},
"files": [
"dist",
"types",
"README.md"
],
"peerDependencies": {
"zod": ">=3.0.0 <4.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@duplojs/eslint": "0.3.0",
"@rollup/plugin-typescript": "^11.1.6",
"@sinclair/typebox": "^0.33.9",
"@types/node": "22.1.0",
"@vinejs/vine": "^2.1.0",
"@vitest/coverage-istanbul": "2.0.5",
"eslint": "9.9.0",
"husky": "^9.1.4",
"joi": "^17.13.3",
"myzod": "^1.11.0",
"rollup": "^4.27.4",
"rollup-plugin-esbuild": "6.1.1",
"tslib": "^2.6.3",
"tsx": "^4.19.0",
"typescript": "5.5.4",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "2.0.5"
},
"keywords": [
"typescript",
"json-schema",
"parser",
"validate",
"typecheck",
"zod",
"faster",
"zod faster"
]
}