-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
80 lines (80 loc) · 2.42 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
80
{
"name": "kicad-component-converter",
"version": "0.1.4",
"description": "Convert kicad_mod or kicad_sym file into Circuit JSON or tscircuit",
"type": "module",
"main": "dist/index.cjs",
"scripts": {
"test:pull-kicad-footprints": "git clone --depth 1 https://gitlab.com/kicad/libraries/kicad-footprints.git",
"test": "bun test",
"build": "npm run build:lib && npm run build:cli",
"build:lib": "tsup ./src/index.ts --dts --sourcemap",
"benchmark": "DEBUG='' RUN_BENCHMARK=1 npx ava --color -T 2m ./tests/kicad-file-tests/benchmark.test.ts",
"cli": "tsx ./src/cli/cli.ts",
"build:cli": "tsup ./src/cli/cli.ts --dts --sourcemap",
"cli:test-convert": "npm run cli -- convert-kicad-directory --input-dir ./kicad-footprints/Battery.pretty --output-dir ./test-output",
"format": "biome format . --write",
"format:check": "biome format .",
"start": "vite",
"build:site": "vite build",
"vercel-build": "bun run build:site"
},
"bin": {
"kicad-mod-converter": "./dist/cli.cjs"
},
"files": [
"dist"
],
"keywords": [
"kicad",
"json",
"converter",
"electronics"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@tscircuit/log-soup": "^1.0.1",
"@tscircuit/runframe": "^0.0.54",
"@tscircuit/soup": "^0.0.73",
"@types/bun": "^1.1.14",
"@types/debug": "^4.1.12",
"@types/node": "^20.14.2",
"@types/prompts": "^2.4.9",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@vitejs/plugin-react": "^4.3.4",
"ava": "^6.1.3",
"bun-match-svg": "^0.0.8",
"circuit-to-svg": "^0.0.99",
"class-variance-authority": "^0.7.1",
"commander": "^12.1.0",
"debug": "^4.3.5",
"esbuild": "^0.21.4",
"esbuild-register": "^3.5.0",
"kleur": "^4.1.5",
"perfect-cli": "^1.0.20",
"prompts": "^2.4.2",
"react": "18",
"react-dom": "18",
"tsup": "^8.0.2",
"tsx": "^4.15.1",
"vite": "^6.0.7",
"vite-tsconfig-paths": "^5.1.4",
"@tscircuit/builder": "^1.5.116",
"circuit-json": "^0.0.126",
"lucide-react": "^0.469.0",
"@tscircuit/props": "^0.0.125"
},
"dependencies": {
"@tscircuit/create-snippet-url": "^0.0.1",
"@tscircuit/math-utils": "0.0.9",
"@tscircuit/pcb-viewer": "^1.11.2",
"circuit-json-to-tscircuit": "^0.0.4",
"prettier": "^3.3.1",
"s-expression": "^3.1.1",
"zod": "^3.23.8",
"zustand": "^5.0.2"
}
}