-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.66 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.66 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "notary-electron",
"productName": "NotaryXpert",
"private": true,
"version": "1.0.5",
"description": "NotaryXpert Electron desktop app",
"author": "NotaryXpert",
"type": "module",
"main": "electron/main.cjs",
"scripts": {
"dev": "vite --port=3000 --host=0.0.0.0",
"build": "vite build",
"electron": "set ELECTRON_RUN_AS_NODE=&& electron .",
"electron:dev": "concurrently -k \"npm:dev\" \"npm:electron:wait\"",
"electron:wait": "wait-on tcp:3000 && set ELECTRON_RUN_AS_NODE=&& electron .",
"dist:win": "npm run build && electron-builder --win",
"release:win": "npm run build && electron-builder --win --publish always",
"preview": "vite preview",
"clean": "rm -rf dist",
"lint": "tsc --noEmit",
"test": "tsx --test src/lib/fingerprint/config.test.ts src/lib/fingerprint/pid.test.ts src/lib/fingerprint/capture.test.ts src/lib/personMedia.test.ts src/lib/webcam/status.test.ts"
},
"dependencies": {
"@google/genai": "^1.29.0",
"@react-pdf/renderer": "^4.5.1",
"@tailwindcss/vite": "^4.1.14",
"@vitejs/plugin-react": "^5.0.4",
"clsx": "^2.1.1",
"dotenv": "^17.2.3",
"electron-updater": "^6.8.3",
"express": "^4.21.2",
"firebase": "^10.0.0",
"lucide-react": "^0.546.0",
"motion": "^12.23.24",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.14.1",
"tailwind-merge": "^3.5.0",
"vite": "^6.2.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.14.0",
"@vitejs/plugin-basic-ssl": "^2.3.0",
"autoprefixer": "^10.4.21",
"concurrently": "^9.2.1",
"electron": "^41.7.0",
"electron-builder": "^26.8.1",
"tailwindcss": "^4.1.14",
"tsx": "^4.21.0",
"typescript": "~5.8.2",
"vite": "^6.2.0",
"wait-on": "^9.0.10"
},
"build": {
"appId": "com.notaryxpert.desktop",
"productName": "NotaryXpert",
"directories": {
"output": "release"
},
"artifactName": "${productName}-Setup-${version}.${ext}",
"files": [
"dist/**/*",
"electron/**/*",
"package.json"
],
"extraMetadata": {
"main": "electron/main.cjs"
},
"win": {
"target": [
"nsis"
],
"icon": "public/notaryxpert.ico",
"executableName": "NotaryXpert"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "NotaryXpert",
"uninstallDisplayName": "NotaryXpert"
},
"publish": [
{
"provider": "github",
"owner": "GitNimay",
"repo": "notary-electron"
}
]
}
}