generated from zmkfirmware/unified-zmk-config-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 1.04 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
{
"name": "lintilla",
"version": "1.0.0",
"description": "Lintilla Keyboard Design",
"main": "index.js",
"scripts": {
"all": "npm run ergo && npm run stl",
"clean-all": "rm -rf output/*",
"clean-cases": "rm -rf output/cases/*",
"clean-outlines": "rm -rf output/outlines/*",
"clean-pcbs": "rm -rf output/pcbs/*",
"copy-traces": "/Applications/KiCad/KiCad.app/Contents/Frameworks/Python.framework/Versions/Current/bin/python3 ./helper.py -b copy-traces pcb/lintilla.kicad_pcb output/pcbs/lintilla.kicad_pcb",
"lock-traces": "/Applications/KiCad/KiCad.app/Contents/Frameworks/Python.framework/Versions/Current/bin/python3 ./helper.py lock-traces",
"save-pcb": "cp output/pcbs/* pcb",
"save-cases": "cp output/cases/*.stl cases",
"ergo": "ergogen .",
"stl": "for i in output/cases/*.jscad; do npx @jscad/cli@1 \"$i\" -of stla; done",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Chad Transtrum",
"license": "CERN-OHL-P-2.0",
"devDependencies": {
"ergogen": "^4.1.0"
}
}