-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.83 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.83 KB
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
{
"name": "@duplojs/zod-accelerator",
"version": "0.0.0",
"author": "mathcovax",
"license": "MIT",
"type": "module",
"repository": "https://github.com/duplojs/zod-accelerator",
"scripts": {
"build:scripts": "rollup --config",
"build": "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 && npm run integration:test:types",
"test:types:scripts": "tsc",
"integration:test:types": "npm -w test/integration run test:types",
"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": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md"
],
"workspaces": [
"test/integration"
],
"peerDependencies": {
"zod": ">=3.0.0 <4.0.0"
},
"devDependencies": {
"@commitlint/cli": "19.7.1",
"@commitlint/config-conventional": "19.2.2",
"@duplojs/eslint": "0.4.0",
"@rollup/plugin-typescript": "12.1.2",
"@sinclair/typebox": "^0.33.9",
"@types/node": "22.1.0",
"@vinejs/vine": "^2.1.0",
"@vitest/coverage-istanbul": "3.0.5",
"eslint": "9.20.0",
"husky": "9.1.7",
"joi": "^17.13.3",
"myzod": "^1.11.0",
"rollup": "4.34.6",
"rollup-plugin-esbuild": "6.2.0",
"tslib": "2.8.1",
"tsx": "4.19.0",
"typescript": "5.7.3",
"vite-tsconfig-paths": "5.1.4",
"vitest": "3.0.5"
},
"keywords": [
"typescript",
"json-schema",
"parser",
"validate",
"typecheck",
"zod",
"faster",
"zod faster"
]
}