-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.35 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
{
"name": "breast-followup-system",
"version": "1.1.0",
"description": "Web and Windows desktop breast cancer follow-up system with local databases | 带 Windows 桌面版与本地数据库的乳腺癌随访系统",
"author": {
"name": "shbsrh"
},
"homepage": "https://github.com/liqi3333/breast-followup/releases/latest",
"repository": {
"type": "git",
"url": "https://github.com/liqi3333/breast-followup.git"
},
"license": "UNLICENSED",
"scripts": {
"start": "electron .",
"build:win": "electron-builder --win portable",
"build:html": "node scripts/build-html-release.js"
},
"main": "main.js",
"dependencies": {
"sql.js": "^1.13.0"
},
"devDependencies": {
"electron": "^35.1.5",
"electron-builder": "^26.0.12"
},
"build": {
"appId": "ai.openclaw.breast-followup",
"productName": "Breast Follow-up System",
"copyright": "Copyright © 2026 shbsrh",
"artifactName": "Breast-Followup-System-${version}.${ext}",
"directories": {
"output": "dist"
},
"files": [
"main.js",
"preload.js",
"desktop-db.js",
"index.html",
"mobile.html",
"scripts/build-html-release.js",
"package.json"
],
"win": {
"target": [
{
"target": "portable",
"arch": [
"x64"
]
}
]
}
}
}