-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.5 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
{
"name": "hookscope",
"version": "1.0.0",
"description": "Self-hosted webhook capture & debugging. Create a bin, point any webhook at it, inspect every request live, replay or forward to your real endpoint. Pay once — no Webhook.site subscription.",
"author": "Ben (bensblueprints)",
"license": "MIT",
"main": "electron/main.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"start": "node server/index.js",
"postinstall": "node scripts/setup-native.js",
"desktop": "electron .",
"test": "node test/smoke.js",
"dist": "electron-builder --win nsis"
},
"dependencies": {
"better-sqlite3": "^12.2.0",
"cookie-parser": "^1.4.7",
"express": "^4.21.2"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.0",
"@vitejs/plugin-react": "^4.4.0",
"electron": "^33.4.0",
"electron-builder": "^25.1.8",
"framer-motion": "^11.18.2",
"lucide-react": "^0.474.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^4.1.0",
"vite": "^6.3.5"
},
"build": {
"appId": "com.bensblueprints.hookscope",
"productName": "Hookscope",
"files": [
"electron/**",
"server/**",
"dist/**",
"vendor/**",
"package.json"
],
"win": {
"target": "nsis",
"icon": "build/icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"directories": {
"output": "release"
},
"asarUnpack": [
"vendor/**"
]
}
}