-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 856 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 856 Bytes
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
{
"name": "gcode-post-processing",
"description": "GCode post-processing scripts",
"version": "1.0.0",
"scripts": {
"start": "node ./dist/index.js",
"build": "webpack --mode=production",
"build:dev": "webpack --mode=development",
"install": "npm run build && ts-node ./install.ts"
},
"engines": {
"node": "20"
},
"author": "https://github.com/Di-Strix",
"license": "MIT",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/cli-color": "^2.0.6",
"@types/node": "^20.12.12",
"@types/yargs": "^17.0.32",
"prettier": "^3.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpackbar": "^6.0.1"
},
"dependencies": {
"cli-color": "^2.0.4",
"yargs": "^17.7.2"
}
}