-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 956 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 956 Bytes
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
{
"name": "@hackfed/schemas",
"description": "Resource Definition Schemas for Hackfed",
"version": "0.8.0",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/hackfed/schemas.git"
},
"exports": {
"./v1": {
"import": "./dist/v1/index.js",
"types": "./dist/v1/index.d.ts"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"generate": "tsx src/cmd/generate-json-schemas.ts",
"build": "rimraf dist && tsc",
"lint": "tsc --noEmit && eslint ."
},
"packageManager": "pnpm@10.28.0",
"devDependencies": {
"@bksp/style-guide": "^1.2.6",
"@tsconfig/strictest": "^2.0.8",
"@types/node": "^25.0.9",
"change-case": "^5.4.4",
"eslint": "^9.39.2",
"glob": "^13.0.0",
"rimraf": "^6.1.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"zod": "4"
},
"peerDependencies": {
"zod": "4"
}
}