-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.38 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.38 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
{
"name": "visualcodex",
"version": "0.1.0",
"description": "Electron front-end for open-codex",
"main": "dist/main.js",
"scripts": {
"start": "electron .",
"dev": "concurrently \"webpack --watch\" \"electron .\"",
"build": "webpack --mode production",
"postinstall": "webpack --mode production",
"package": "electron-builder build --mac --win --linux",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "MIT",
"build": {
"appId": "com.visualcodex.app",
"productName": "VisualCodex",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"package.json"
],
"mac": {
"category": "public.app-category.developer-tools"
},
"win": {
"target": "nsis"
},
"linux": {
"target": "AppImage",
"category": "Development"
}
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"concurrently": "^8.2.2",
"css-loader": "^6.9.0",
"electron": "^29.0.0",
"electron-builder": "^24.9.0",
"html-webpack-plugin": "^5.6.0",
"style-loader": "^3.3.4",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"electron-store": "^8.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}