-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.14 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
{
"name": "layerspy",
"version": "1.7.0",
"description": "LayerSpy - Professional 3D Printing G-Code Analyzer & Simulator",
"main": "electron-main.js",
"scripts": {
"start": "npx electron .",
"serve": "npx serve -l 3000 .",
"build:app": "npx electron-builder --win --dir",
"build:installer": "npx electron-builder --win nsis"
},
"keywords": [
"gcode",
"3dprinting",
"analyzer",
"klipper",
"marlin",
"vfa",
"pressure-advance"
],
"author": "Svender3D",
"license": "MIT",
"dependencies": {
"jimp": "^0.22.10",
"jsdom": "^29.1.1",
"playwright": "^1.61.1",
"sharp": "^0.35.3"
},
"devDependencies": {
"electron": "^31.3.1",
"electron-builder": "^24.13.3",
"serve": "^14.2.4"
},
"build": {
"appId": "de.svender3d.layerspy",
"productName": "LayerSpy",
"directories": {
"output": "dist"
},
"win": {
"target": ["nsis", "portable"],
"icon": "assets/logo.png"
},
"nsis": {
"oneClick": true,
"allowToChangeInstallationDirectory": false,
"createDesktopShortcut": true,
"createStartMenuShortcut": true
}
}
}