-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.6 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
{
"name": "Signum",
"version": "1.0.0",
"description": "Offline-first P2P emergency communication tool",
"main": "dist/main/index.js",
"author": "Tech Mobius",
"license": "MIT",
"scripts": {
"dev": "node scripts/dev.js",
"build:portable": "tsc && vite build && electron-packager . Signum --platform=win32 --arch=x64 --out=dist-build --overwrite",
"build:installer": "tsc && vite build && electron-builder --win",
"start": "electron ."
},
"build": {
"appId": "com.techmobius.signum",
"productName": "Signum",
"files": [
"dist/**/*",
"package.json"
],
"directories": {
"output": "dist-installer-new"
},
"win": {
"target": "nsis"
},
"nsis": {
"oneClick": true,
"perMachine": false,
"createDesktopShortcut": true
}
},
"dependencies": {
"base64-js": "^1.5.1",
"d3": "^7.8.5",
"fflate": "^0.8.3",
"jsqr": "^1.4.0",
"lucide-react": "^0.321.0",
"ogl": "^1.0.11",
"qrcode": "^1.5.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sql.js": "^1.14.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/d3": "^7.4.3",
"@types/node": "^20.11.10",
"@types/qrcode": "^1.5.6",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/sql.js": "^1.4.11",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.5.3",
"electron": "^28.2.0",
"electron-builder": "^26.15.3",
"electron-packager": "^17.1.2",
"postcss": "^8.5.19",
"tailwindcss": "^3.4.19",
"typescript": "^5.3.3",
"vite": "^5.0.12"
}
}