-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.64 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": "circuit-json-to-kicad",
"main": "dist/index.js",
"version": "0.0.211",
"repository": {
"type": "git",
"url": "https://github.com/tscircuit/circuit-json-to-kicad"
},
"type": "module",
"files": [
"dist"
],
"trustedDependencies": [
"kicad-to-circuit-json",
"kicadts",
"sharp"
],
"scripts": {
"build": "tsup-node lib/index.ts --format esm --dts",
"build:site": "bun build ./site/index.html --outdir site-build",
"download-demos": "git clone --depth 1 --branch 9.0.9-rc1 --filter=blob:none --sparse https://gitlab.com/kicad/code/kicad.git kicad-demos && cd kicad-demos && git sparse-checkout set demos",
"download-references": "bun run scripts/download-references.ts",
"typecheck": "bunx tsc --noEmit",
"format": "biome format --write .",
"format:check": "biome format .",
"pcm-server": "bun run scripts/run-pcm-server.ts",
"kicad-library": "bun run scripts/build-kicad-library.ts",
"compare-kicad": "bun run scripts/compare-kicad-files.ts"
},
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"@tscircuit/common": "^0.0.5",
"@types/bun": "latest",
"@types/earcut": "^3.0.0",
"circuit-json": "^0.0.480",
"earcut": "^3.0.2",
"format-si-unit": "^0.0.14",
"jszip": "^3.10.1",
"kicad-to-circuit-json": "^0.0.125",
"kicadts": "github:tscircuit/kicadts#f3ea106bdc65ca901e9b23255ad3be0bd2a624ab",
"polygon-clipping": "^0.15.7",
"sharp": "^0.34.4",
"transformation-matrix": "^3.1.0",
"tscircuit": "^0.0.2046",
"tscircuit-latest": "npm:tscircuit@0.0.2460",
"tsup": "^8.5.0"
},
"peerDependencies": {
"typescript": "^5"
}
}