-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 891 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 891 Bytes
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
{
"name": "spec-reminder",
"version": "1.0.0",
"description": "AI powered eye protection reminder",
"main": "main.js",
"author": "Harikrishnan",
"scripts": {
"start": "electron .",
"build": "electron-builder"
},
"build": {
"appId": "com.specbot.app",
"productName": "SpecBot",
"directories": {
"output": "dist"
},
"files": [
"**/*"
],
"win": {
"target": "nsis",
"icon": "icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "SpecBot"
}
},
"dependencies": {
"@teachablemachine/image": "^0.8.5",
"@tensorflow/tfjs": "^3.21.0",
"auto-launch": "^5.0.6"
},
"devDependencies": {
"electron": "^36.3.2",
"electron-builder": "^26.0.12"
}
}