-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 815 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 815 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
{
"name": "@hackfed/toolbox",
"description": "Tools for Hackfed Registry",
"version": "0.2.1",
"bin": {
"hackfed-toolbox": "src/index.ts"
},
"dependencies": {
"@hackfed/schemas": "^0.8.0",
"commander": "^14.0.2",
"ipaddr.js": "^2.3.0",
"tslog": "^4.10.2",
"zod": "^4.3.5"
},
"devDependencies": {
"@bksp/style-guide": "^1.2.6",
"@types/bun": "1.3.6",
"eslint": "^9.39.2"
},
"engines": {
"bun": ">=1.3.6"
},
"files": [
"src",
"LICENSE",
"README.md"
],
"license": "MPL-2.0",
"module": "src/index.ts",
"peerDependencies": {
"typescript": "^5.9.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hackfed/toolbox.git"
},
"scripts": {
"check": "tsc --noEmit && eslint ."
},
"type": "module"
}