forked from tscircuit/circuit-json-to-gerber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 967 Bytes
/
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
{
"name": "circuit-json-to-gerber",
"version": "0.0.15",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsup-node src/index.ts src/cli.ts --format esm --dts --sourcemap",
"format": "biome format --write .",
"format:check": "biome format ."
},
"files": [
"dist"
],
"bin": {
"circuit-to-gerber": "./dist/cli.js"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@tscircuit/core": "^0.0.131",
"@types/archiver": "^6.0.3",
"@types/bun": "^1.1.8",
"@types/node": "^22.5.2",
"@types/react": "^18.3.12",
"archiver": "^7.0.1",
"bun-match-svg": "^0.0.3",
"commander": "^12.1.0",
"gerber-to-svg": "^4.2.8",
"pcb-stackup": "^4.2.8",
"react": "^18.3.1",
"tsup": "^8.2.4"
},
"peerDependencies": {
"typescript": "^5.0.0",
"circuit-json": "*"
},
"dependencies": {
"@tscircuit/alphabet": "^0.0.2",
"fast-json-stable-stringify": "^2.1.0"
}
}