-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.72 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
71
72
73
74
75
76
77
{
"name": "zod-package-json",
"version": "2.1.0",
"description": "Zod schema for the package.json file format",
"keywords": [
"json",
"npm",
"package",
"schema",
"typescript",
"zod"
],
"bugs": {
"url": "https://github.com/velut/zod-package-json/issues"
},
"license": "MIT",
"author": {
"name": "Edoardo Scibona",
"url": "https://github.com/velut"
},
"repository": {
"type": "git",
"url": "https://github.com/velut/zod-package-json.git"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./mini": {
"types": "./dist/mini/index.d.ts",
"default": "./dist/mini/index.js"
}
},
"scripts": {
"check": "tsc --noEmit",
"build": "tsc --noEmit && zshy",
"attw": "attw --pack . --profile esm-only",
"test": "vitest",
"test:ci": "vitest run --coverage --bail 1",
"lint": "oxfmt --check",
"format": "oxfmt",
"pre-push": "bun install && bun run lint && bun run build && bun run test:ci && bun run attw",
"release": "np --no-cleanup"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@vitest/coverage-v8": "^4.1.6",
"np": "^12.0.0",
"oxfmt": "^0.65.0",
"typescript": "^6.0.2",
"vitest": "^4.1.6",
"zshy": "^0.7.2"
},
"peerDependencies": {
"zod": "^4.0.0"
},
"engines": {
"node": ">=20"
},
"zshy": {
"exports": {
"./package.json": "./package.json",
".": "./src/index.ts",
"./mini": "./src/mini/index.ts"
},
"cjs": false
}
}