-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.79 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
{
"name": "zoxy",
"version": "0.0.0-development",
"description": "A small type-safe object proxy around Zod to help you stay safe after your data is loaded.",
"author": {
"name": "skarab42",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/skarab42/zoxy.git"
},
"homepage": "https://github.com/skarab42/zoxy",
"bugs": "https://github.com/skarab42/zoxy/issues",
"funding": "https://github.com/sponsors/skarab42",
"license": "MIT",
"type": "module",
"module": "./build/index.js",
"exports": "./build/index.js",
"types": "./build/index.d.ts",
"private": false,
"publishConfig": {
"access": "public"
},
"files": [
"build"
],
"scripts": {
"build": "tsc -p ./tsconfig.build.json",
"check": "tsc -p ./tsconfig.check.json",
"lint": "eslint --max-warnings=0 .",
"format": "prettier --check .",
"check-lint-format": "pnpm check && pnpm lint && pnpm format",
"test": "pnpm check-lint-format && pnpm vitest run --coverage",
"prepare": "npx simple-git-hooks",
"release": "semantic-release --branches main"
},
"devDependencies": {
"@skarab/eslint-config": "^3.2.0",
"@skarab/prettier-config": "^1.2.2",
"@skarab/typescript-config": "^2.1.0",
"@types/node": "^18.11.12",
"@vitest/coverage-c8": "^0.25.6",
"eslint": "^8.29.0",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"semantic-release": "^19.0.5",
"simple-git-hooks": "^2.8.1",
"typescript": "^4.9.4",
"vitest": "^0.25.6",
"zod": "^3.19.1"
},
"peerDependencies": {
"zod": "*"
},
"engines": {
"node": ">=16",
"pnpm": ">=7"
},
"packageManager": "[email protected]",
"keywords": [
"zod",
"proxy",
"object",
"type-safe",
"typescript",
"validation"
]
}