-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.41 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.41 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
{
"name": "humancrop",
"version": "1.0.0",
"description": "High-performance, privacy-first desktop application for offline batch processing of official ID photos using AI biometric cropping and background removal.",
"main": "dist/main.js",
"scripts": {
"start": "electron .",
"build": "tsc",
"dev": "tsc && electron .",
"pack": "electron-builder --dir",
"dist": "npm run build && electron-builder",
"postinstall": "electron-builder install-app-deps"
},
"build": {
"appId": "com.rjmejia.humancrop",
"productName": "HumanCrop",
"afterPack": "./scripts/apply-fuses.js",
"directories": {
"output": "release"
},
"win": {
"target": "nsis"
},
"linux": {
"target": "AppImage"
},
"mac": {
"target": "dmg"
},
"files": [
"dist",
"src/index.html",
"src/styles.css",
"src/locales",
"src/assets",
"node_modules"
]
},
"dependencies": {
"@imgly/background-removal-node": "^1.4.5",
"@tensorflow/tfjs": "^4.22.0",
"@tensorflow/tfjs-backend-wasm": "^4.22.0",
"@vladmandic/human": "^3.2.1",
"i18next": "^25.8.13",
"i18next-fs-backend": "^2.6.1",
"lucide": "^0.575.0",
"sharp": "^0.33.2"
},
"devDependencies": {
"@electron/fuses": "^2.1.0",
"@types/node": "^20.0.0",
"electron": "^40.6.1",
"electron-builder": "^24.13.3",
"typescript": "^5.3.3"
}
}