-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.77 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
{
"name": "modelthing",
"version": "0.1.0",
"private": true,
"main": "public/electron.mjs",
"homepage": "./",
"dependencies": {
"@types/js-yaml": "^4.0.9",
"@uiw/react-textarea-code-editor": "^3.0.2",
"@xyflow/react": "^12.3.4",
"antd": "^5.21.2",
"electron-is-dev": "^3.0.1",
"js-yaml": "^4.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-scripts": "^5.0.1"
},
"devDependencies": {
"@eslint/js": "^8.1.0",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.2",
"concurrently": "^9.0.1",
"cross-env": "^7.0.3",
"electron": "^32.1.2",
"electron-builder": "^25.1.7",
"eslint": "^8.1.0",
"globals": "^15.10.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.1.0",
"vite": "^5.4.8",
"wait-on": "^8.0.1"
},
"packageManager": "yarn@4.5.0",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"electron:dev": "concurrently \"cross-env BROWSER=none npm start\" \"wait-on http://localhost:3000 && electron .\"",
"electron:build": "npm run build && electron-builder -c.extraMetadata.main=build/electron.js",
"electron:start": "electron ."
},
"build": {
"extends": null,
"appId": "pro.felixo.modelthing",
"files": [
"dist/**/*",
"build/**/*",
"node_modules/**/*",
"package.json",
"public/preload.js"
],
"directories": {
"buildResources": "assets"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}