forked from tscircuit/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.83 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.83 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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@tscircuit/cli",
"version": "0.1.1059",
"main": "dist/cli/main.js",
"exports": {
".": "./dist/cli/main.js",
"./lib": "./dist/lib/index.js"
},
"devDependencies": {
"@babel/standalone": "^7.26.9",
"@biomejs/biome": "^1.9.4",
"@tscircuit/circuit-json-placement-analysis": "^0.0.4",
"@tscircuit/circuit-json-util": "0.0.81",
"@tscircuit/fake-snippets": "^0.0.182",
"@tscircuit/file-server": "^0.0.32",
"@tscircuit/math-utils": "0.0.29",
"@tscircuit/props": "^0.0.487",
"@tscircuit/runframe": "^0.0.1697",
"@tscircuit/schematic-match-adapt": "^0.0.22",
"@types/bun": "^1.2.2",
"@types/configstore": "^6.0.2",
"@types/debug": "^4.1.12",
"@types/jsonwebtoken": "^9.0.9",
"@types/micromatch": "^4.0.9",
"@types/prompts": "^2.4.9",
"@types/react": "^19.0.8",
"@types/semver": "^7.5.8",
"bun-match-svg": "^0.0.12",
"chokidar": "4.0.1",
"circuit-json-to-kicad": "^0.0.82",
"circuit-json-to-readable-netlist": "^0.0.13",
"circuit-json-to-spice": "^0.0.10",
"circuit-json-to-tscircuit": "^0.0.9",
"commander": "^14.0.0",
"conf": "^13.1.0",
"configstore": "^7.0.0",
"cosmiconfig": "^9.0.0",
"debug": "^4.4.0",
"delay": "^6.0.0",
"dsn-converter": "^0.0.63",
"easyeda": "^0.0.240",
"fuse.js": "^7.1.0",
"get-port": "^7.1.0",
"globby": "^14.1.0",
"jose": "^6.1.0",
"jsonwebtoken": "^9.0.2",
"jszip": "^3.10.1",
"jwt-decode": "^4.0.0",
"kicad-component-converter": "^0.1.22",
"kicadts": "^0.0.24",
"kleur": "^4.1.5",
"ky": "^1.7.4",
"looks-same": "^9.0.1",
"make-vfs": "^1.0.15",
"md5": "^2.3.0",
"perfect-cli": "^1.0.21",
"playwright": "^1.57.0",
"poppygl": "^0.0.12",
"prompts": "^2.4.2",
"redaxios": "^0.5.1",
"semver": "^7.6.3",
"sharp": "0.32.6",
"tempy": "^3.1.0",
"tscircuit": "0.0.1416-libonly",
"tsx": "^4.7.1",
"typed-ky": "^0.0.4",
"zod": "^3.23.8"
},
"peerDependencies": {
"tscircuit": "*"
},
"bin": {
"tscircuit-cli": "./cli/entrypoint.js"
},
"files": [
"dist",
"cli/entrypoint.js",
"types"
],
"peerDependenciesMeta": {
"tscircuit": {
"optional": false
}
},
"scripts": {
"start": "bun run dev",
"dev": "bun --hot ./cli/main.ts dev ./examples/basic/index.circuit.tsx",
"dev:kicad-pcm": "bun --hot ./cli/main.ts dev ./examples/scaffold --kicad-pcm",
"setup": "bun run build && npm install -g .",
"build": "bun run build:bun",
"build:bun": "bun run scripts/bun-build.ts",
"smoketest": "docker build --progress=plain -f Dockerfile.smoketest .",
"format": "biome format --write .",
"format:check": "biome format .",
"cli": "bun ./cli/main.ts",
"pkg-pr-new-release": "bunx pkg-pr-new publish --comment=off --peerDeps"
},
"type": "module"
}