-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.18 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.18 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
{
"name": "gui",
"private": true,
"version": "1.1.1",
"description": "Convert images to G-Code for CNC plotting",
"author": "Matias Del Pin",
"main": "dist/main.js",
"scripts": {
"dev": "cross-env NODE_ENV=development concurrently \"npm run dev:vite\" \"npm run dev:electron\"",
"dev:vite": "vite",
"dev:electron": "tsc -p electron && electron .",
"build": "tsc && vite build && tsc -p electron",
"preview": "vite preview",
"dist": "electron-builder"
},
"devDependencies": {
"@types/node": "^25.1.0",
"concurrently": "^9.2.1",
"cross-env": "^7.0.3",
"electron": "^40.1.0",
"electron-builder": "^26.7.0",
"typescript": "~5.9.3",
"vite": "^7.2.4"
},
"dependencies": {
"@types/three": "^0.182.0",
"three": "^0.182.0"
},
"build": {
"appId": "com.mati.image2gcode",
"productName": "Image2GCode",
"directories": {
"output": "release"
},
"files": [
"dist/**/*"
],
"extraResources": [
{
"from": "backend/dist/main",
"to": "bin/main"
}
],
"linux": {
"target": "AppImage",
"category": "Graphics",
"executableName": "image-2-gcode"
}
}
}