-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
144 lines (144 loc) · 5.16 KB
/
Copy pathpackage.json
File metadata and controls
144 lines (144 loc) · 5.16 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "@tscircuit/eval",
"main": "dist/lib/index.js",
"version": "0.0.978",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "bun run build:lib && bun run build:webworker && bun run build:blob-url && bun run build:runner && bun run build:worker-wrapper && bun run build:platform-config",
"build:lib": "tsup-node --config tsup-lib.config.ts",
"build:platform-config": "tsup-node --config tsup-platform-config.config.ts",
"build:webworker": "tsup --config tsup-webworker.config.ts",
"build:worker-wrapper": "tsup-node ./lib/worker.ts --format esm --sourcemap inline --dts -d dist",
"build:webworker:analyze": "tsup ./webworker/entrypoint.ts --platform browser --metafile ./metadata.json --format esm --sourcemap inline -d dist/webworker",
"build:blob-url": "bun run ./scripts/build-worker-blob-url.ts",
"build:runner": "tsup-node --config tsup-runner.config.ts",
"start:browser-test-server": "bun --port 3070 ./browser-tests/browsertest.html",
"format": "biome format --write .",
"format:check": "biome format .",
"test:playwright": "playwright test",
"test": "bun test tests",
"test:validate-matrix": "bun run scripts/validate-test-matrix.js",
"copy-core-versions": "bun run scripts/copy-core-versions.ts && bun install --ignore-scripts"
},
"exports": {
".": {
"types": "./dist/lib/index.d.ts",
"import": "./dist/lib/index.js"
},
"./worker": {
"types": "./dist/worker.d.ts",
"import": "./dist/worker.js"
},
"./worker-lite-wrapper": {
"types": "./dist/worker.d.ts",
"import": "./dist/worker.js"
},
"./worker-entrypoint": {
"types": "./dist/webworker/entrypoint.d.ts",
"import": "./dist/webworker/entrypoint.js"
},
"./blob-url": {
"types": "./dist/blob-url.d.ts",
"import": "./dist/blob-url.js"
},
"./eval": {
"types": "./dist/eval/index.d.ts",
"import": "./dist/eval/index.js"
},
"./runner": {
"types": "./dist/runner/index.d.ts",
"import": "./dist/runner/index.js"
},
"./platform-config": {
"types": "./dist/platform-config/getPlatformConfig.d.ts",
"import": "./dist/platform-config/getPlatformConfig.js"
}
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@playwright/test": "^1.50.1",
"@resvg/resvg-js": "^2.6.2",
"@tscircuit/alphabet": "0.0.25",
"@tscircuit/capacity-autorouter": "^0.0.628",
"@tscircuit/checks": "0.0.142",
"@tscircuit/circuit-json-flex": "^0.0.3",
"@tscircuit/circuit-json-util": "^0.0.97",
"@tscircuit/common": "^0.0.20",
"@tscircuit/copper-pour-solver": "0.0.35",
"@tscircuit/core": "^0.0.1395",
"@tscircuit/footprinter": "^0.0.371",
"@tscircuit/import-snippet": "^0.0.4",
"@tscircuit/infer-cable-insertion-point": "^0.0.2",
"@tscircuit/infgrid-ijump-astar": "^0.0.35",
"@tscircuit/jlcpcb-manufacturing-specs": "git+https://github.com/tscircuit/jlcpcb-manufacturing-specs#e08af159db01a37db007e33f0a7268d0e4a279a5",
"@tscircuit/krt-wasm": "^0.1.1",
"@tscircuit/layout": "^0.0.28",
"@tscircuit/log-soup": "^1.0.2",
"@tscircuit/matchpack": "^0.0.29",
"@tscircuit/math-utils": "^0.0.36",
"@tscircuit/miniflex": "^0.0.4",
"@tscircuit/mm": "^0.0.9",
"@tscircuit/ngspice-spice-engine": "^0.0.18",
"@tscircuit/parts-engine": "^0.0.21",
"@tscircuit/props": "^0.0.567",
"@tscircuit/schematic-autolayout": "^0.0.6",
"@tscircuit/schematic-match-adapt": "^0.0.18",
"@tscircuit/schematic-trace-solver": "^0.0.87",
"@tscircuit/simple-3d-svg": "^0.0.41",
"@tscircuit/solver-utils": "^0.0.16",
"@tscircuit/soup-util": "^0.0.41",
"@types/bun": "^1.2.16",
"@types/debug": "^4.1.12",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/react-reconciler": "^0.28.9",
"bpc-graph": "^0.0.57",
"bun-match-svg": "0.0.12",
"calculate-elbow": "^0.0.12",
"chokidar-cli": "^3.0.0",
"circuit-json": "^0.0.446",
"circuit-json-to-bpc": "^0.0.13",
"circuit-json-to-connectivity-map": "^0.0.23",
"circuit-json-to-gltf": "^0.0.105",
"circuit-json-to-simple-3d": "^0.0.9",
"circuit-json-to-spice": "^0.0.40",
"circuit-to-svg": "^0.0.371",
"comlink": "^4.4.2",
"concurrently": "^9.1.2",
"connectivity-map": "^1.0.0",
"debug": "^4.3.6",
"flatbush": "^4.5.0",
"graphics-debug": "^0.0.95",
"howfat": "^0.3.8",
"kicad-to-circuit-json": "^0.0.97",
"kicadts": "^0.0.47",
"live-server": "^1.2.2",
"looks-same": "^9.0.1",
"minicssgrid": "^0.0.9",
"pkg-pr-new": "^0.0.37",
"poppygl": "^0.0.24",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"schematic-symbols": "^0.0.226",
"spicey": "^0.0.14",
"sucrase": "^3.35.0",
"ts-expect": "^1.3.0",
"tslib": "^2.8.1",
"tsup": "^8.2.4",
"zod": "^3.25.67",
"stack-svgs": "^0.0.1",
"@tscircuit/breakout-point-solver": "github:tscircuit/breakout-point-solver#bac9629",
"spicets": "^0.0.2",
"eecircuit-engine": "^1.5.6",
"@tscircuit/image-utils": "^0.0.8"
},
"peerDependencies": {
"typescript": "^5.0.0",
"@tscircuit/core": "*",
"circuit-json": "*",
"zod": "3"
}
}