-
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.28 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.28 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": "bioryx",
"version": "1.0.0",
"description": "Bioryx Attendance Management System",
"license": "ISC",
"author": "Vimukthi Pramudantha",
"type": "commonjs",
"main": "dist/electron/main.js",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"start": "tsc && electron .",
"dist": "npm run build && electron-builder",
"test": "echo \"Error: no test specified\" && exit 1"
},
"build": {
"publish": [
{
"provider": "github",
"owner": "Vimukthi Pramudantha",
"repo": "https://github.com/VimukthiPramudantha/Bioryx"
}
],
"appId": "com.bioryx.app",
"productName": "Bioryx",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"node_modules/**/*",
"package.json"
],
"win": {
"target": "nsis",
"icon": "assets/logo.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
}
},
"devDependencies": {
"@types/node": "^25.9.1",
"electron": "^42.2.0",
"electron-builder": "^26.15.3",
"typescript": "^6.0.3"
},
"dependencies": {
"dotenv": "^17.4.2",
"mongodb": "^7.2.0",
"zkteco-js": "^1.7.1"
}
}