-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.07 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
{
"name": "@hackfed/hackfedd",
"description": "Hackfed daemon.",
"version": "0.0.0",
"bin": {
"hackfedd": "src/index.ts"
},
"dependencies": {
"@hackfed/schemas": "^0.10.0",
"change-case": "^5.4.4",
"commander": "^15.0.0",
"eta": "^4.6.0",
"jsdom": "^29.1.1",
"ky": "^2.0.2",
"set-cookie-parser": "^3.1.2",
"tslog": "^5.1.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@bksp/style-guide": "^1.8.1",
"@types/bun": "latest",
"@types/jsdom": "^28.0.3",
"@types/set-cookie-parser": "^2.4.10",
"eslint": "^9.39.4"
},
"engines": {
"bun": ">=1.3.6"
},
"files": [
"src",
"LICENSE",
"README.md"
],
"license": "MPL-2.0",
"module": "src/index.ts",
"peerDependencies": {
"typescript": "^6.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hackfed/hfd.git"
},
"scripts": {
"lint": "tsc --noEmit && eslint .",
"test": "bun test",
"generate:config": "bun run tools/generate-config-schema.ts",
"start": "bun run src/index.ts"
},
"type": "module"
}