-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2 KB
/
package.json
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
{
"name": "deepnest",
"version": "1.3.0",
"description": "Deep nesting for Laser and CNC",
"private": true,
"main": "main.js",
"types": "index.d.ts",
"license": "MIT",
"funding": [
{
"type": "patreon",
"url": "https://patreon.com/deepnest_next?utm_medium=clipboard_copy&utm_source=copyLink&utm_campaign=creatorshare_fan&utm_content=join_link"
}
],
"scripts": {
"start": "electron .",
"test": "playwright test",
"build": "electron-rebuild",
"clean": "rmdir /s /q build dist >nul 2>&1|echo . >nul",
"clean-all": "rmdir /s /q build dist node_modules bin >nul 2>&1|echo . >nul",
"dist": "cross-replace npx @electron/packager . deepnest-v${npm_package_version} --overwrite",
"dist-all": "npm run clean-all && npm install && npm run build && npm run dist"
},
"repository": "https://github.com/deepnest-next/deepnest",
"keywords": [
"Electron",
"Nesting",
"CNC",
"Laser"
],
"devDependencies": {
"@electron/packager": "^18.3.6",
"@electron/rebuild": "^3.2.9",
"@playwright/test": "^1.49.1",
"@types/node": "^22.10.1",
"cross-replace": "^0.2.0",
"electron": "32.2.7"
},
"dependencies": {
"@deepnest/calculate-nfp": "*",
"@deepnest/svg-preprocessor": "*",
"@electron/remote": "^2.1.2",
"axios": "^1.7.9",
"form-data": "^4.0.1",
"graceful-fs": "^4.2.11"
},
"files": [
"main.js",
"main/**/*",
"index.d.ts",
"node_modules",
"package.json",
"icon.icns",
"icon.ico"
],
"build": {
"appId": "net.deepnest.app",
"copyright": "Copyright 2016 Jack Qiao, 2024 deepnest-next Community",
"compression": "maximum",
"nodeGypRebuild": false,
"mac": {
"category": "public.app-category.utilities",
"icon": "icon.icns"
},
"win": {
"icon": "icon.ico"
}
},
"contributors": [
{
"name": "Josef Fröhle",
"email": "github@josef-froehle.de"
},
{
"name": "Jack Qiao",
"email": "jak000@gmail.com"
}
]
}