-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.26 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.26 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
{
"name": "@killnode/desktop",
"version": "1.0.1",
"private": true,
"description": "KillNode desktop — Tor orchestration, proxy mesh, neural killswitch",
"author": {
"name": "Alaustrup",
"email": "alaustrup@users.noreply.github.com"
},
"homepage": "https://github.com/ALaustrup/killnode",
"license": "MIT",
"main": "out/main/index.js",
"scripts": {
"db:generate": "prisma generate --schema prisma/schema.prisma",
"dev": "prisma generate --schema prisma/schema.prisma && electron-vite dev",
"build": "prisma generate --schema prisma/schema.prisma && electron-vite build",
"preview": "electron-vite preview",
"package": "node scripts/download-tor.mjs && npm run build && electron-builder --publish never",
"typecheck": "prisma generate --schema prisma/schema.prisma && tsc --noEmit -p tsconfig.node.json && tsc --noEmit -p tsconfig.web.json"
},
"dependencies": {
"@prisma/client": "^6.3.0",
"proxy-chain": "^2.4.1",
"socks-proxy-agent": "^8.0.4",
"socks": "^2.8.3"
},
"devDependencies": {
"@types/node": "^22.9.0",
"electron": "33.4.11",
"electron-builder": "^25.1.8",
"electron-vite": "^2.3.0",
"prisma": "^6.3.0",
"typescript": "^5.6.3",
"vite": "^5.4.10"
},
"build": {
"appId": "com.alaustrup.killnode",
"productName": "KillNode",
"directories": {
"output": "release"
},
"files": [
"out/**/*",
"package.json",
"prisma/schema.prisma"
],
"extraResources": [
{
"from": "resources/tor",
"to": "tor",
"filter": ["**/*"]
}
],
"asarUnpack": [
"**/node_modules/@prisma/**",
"**/node_modules/.prisma/**"
],
"win": {
"target": ["nsis", "zip"],
"artifactName": "${productName}-${version}-win.${ext}"
},
"linux": {
"target": ["AppImage", "deb"],
"category": "Network",
"artifactName": "${productName}-${version}-linux.${ext}",
"maintainer": "Alaustrup <alaustrup@users.noreply.github.com>"
},
"mac": {
"target": ["zip"],
"category": "public.app-category.utilities",
"artifactName": "${productName}-${version}-mac.${ext}",
"notarize": false
}
}
}