-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.33 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.33 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "simumarty",
"private": true,
"version": "1.0.0",
"type": "module",
"main": "electron/main.cjs",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"electron:dev": "npm run build && electron .",
"electron:build": "npm run build && electron-builder --win --x64"
},
"build": {
"appId": "com.simumarty.app",
"productName": "SimuMarty",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"electron/**/*",
"package.json"
],
"extraResources": [
{
"from": "python_marty",
"to": "python_marty",
"filter": [
"**/*.py",
"requirements.txt"
]
}
],
"win": {
"target": [
{
"target": "portable",
"arch": [
"x64"
]
}
],
"signAndEditExecutable": false
},
"portable": {
"artifactName": "${productName}-${version}-portable.exe"
},
"mac": {
"target": [
"dmg"
],
"category": "public.app-category.education"
},
"linux": {
"target": [
"AppImage",
"deb"
],
"category": "Education"
}
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@react-three/drei": "^10.7.6",
"@react-three/fiber": "^9.4.0",
"blockly": "^12.3.1",
"cannon-es": "^0.20.0",
"i18next": "^25.8.0",
"i18next-browser-languagedetector": "^8.2.0",
"lil-gui": "^0.21.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-i18next": "^16.5.4",
"three": "^0.180.0",
"zustand": "^5.0.8"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@types/cannon": "^0.1.13",
"@types/node": "^24.6.0",
"@types/react": "^19.1.16",
"@types/react-dom": "^19.1.9",
"@types/three": "^0.180.0",
"@vitejs/plugin-react": "^5.0.4",
"electron": "^33.4.11",
"electron-builder": "^25.1.8",
"eslint": "^9.37.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.22",
"globals": "^16.4.0",
"prettier": "3.6.2",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.1",
"vite": "npm:rolldown-vite@7.1.14"
},
"overrides": {
"vite": "npm:rolldown-vite@7.1.14"
}
}