-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.37 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.37 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
{
"name": "msconsole",
"version": "1.0.0",
"description": "MS Console - OpenAI-powered chatbot for UCSF Multiple Sclerosis Database exploration",
"main": "src/main/main.js",
"author": "UCSF MS Research",
"license": "MIT",
"scripts": {
"python:setup": "node scripts/setup-python.js",
"start": "electron .",
"dev": "concurrently \"npm run watch\" \"wait-on dist/renderer/index.html && electron .\"",
"watch": "webpack --mode development --watch",
"build:renderer": "webpack --mode production",
"build": "npm run python:setup && npm run build:renderer && electron-builder",
"build:win": "npm run python:setup && npm run build:renderer && electron-builder --win",
"build:mac": "npm run python:setup && npm run build:renderer && electron-builder --mac",
"build:linux": "npm run python:setup && npm run build:renderer && electron-builder --linux",
"postinstall": "npm run python:setup"
},
"build": {
"appId": "edu.ucsf.msconsole",
"productName": "MS Console",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"src/main/**/*",
"python/**/*",
"assets/**/*",
"node_modules/**/*",
"!venv/**/*",
"!runtime/**/*"
],
"extraResources": [
{
"from": "python",
"to": "python",
"filter": ["**/*"]
},
{
"from": "venv",
"to": "venv",
"filter": ["**/*"]
},
{
"from": "runtime",
"to": "runtime",
"filter": ["**/*"]
}
],
"mac": {
"category": "public.app-category.medical",
"target": ["dmg", "zip"]
},
"win": {
"target": ["nsis", "zip"]
},
"linux": {
"target": ["AppImage", "deb"],
"category": "Science"
}
},
"dependencies": {
"electron-store": "^8.1.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"@babel/preset-react": "^7.23.0",
"babel-loader": "^9.1.3",
"concurrently": "^8.2.0",
"css-loader": "^6.8.1",
"electron": "^27.0.0",
"electron-builder": "^24.6.4",
"html-webpack-plugin": "^5.5.3",
"lucide-react": "^0.292.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.0",
"style-loader": "^3.3.3",
"wait-on": "^7.0.1",
"webpack": "^5.88.0",
"webpack-cli": "^5.1.4"
}
}