-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.61 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.61 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
{
"name": "@tscircuit/capacity-autorouter",
"main": "./dist/index.js",
"version": "0.0.331",
"type": "module",
"files": [
"dist"
],
"scripts": {
"start": "cosmos",
"build": "tsup ./lib/index.ts --minify terser --external @tscircuit/core --external circuit-to-svg --format esm --dts --sourcemap",
"bench": "bun test tests/spatial-index-bench.test.ts",
"format": "biome format --write .",
"format:check": "biome format .",
"vercel-build": "cosmos-export",
"repomix:lib": "repomix --ignore 'testing/**,**/TwoRouteHighDensitySolver/**,**/RouteStitchingSolver/**,solvers/CapacitySegmentPointOptimizer/CapacitySegmentPointOptimizer.ts' lib",
"bug-report": "bun run scripts/download-bug-report.ts",
"bug-report-with-test": "bun run scripts/create-bug-report-test.ts"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-menubar": "^1.1.14",
"@react-hook/resize-observer": "^2.0.2",
"@resvg/resvg-js": "^2.6.2",
"@tscircuit/autorouting-dataset-01": "^1.0.32",
"@tscircuit/checks": "^0.0.75",
"@tscircuit/circuit-json-util": "^0.0.46",
"@tscircuit/core": "^0.0.337",
"@tscircuit/curvy-trace-solver": "^0.0.10",
"@tscircuit/hypergraph": "^0.0.60",
"@tscircuit/jumper-topology-generator": "^0.0.4",
"@tscircuit/math-utils": "^0.0.27",
"@tscircuit/rectdiff": "0.0.22",
"@tscircuit/solver-utils": "^0.0.14",
"@types/bun": "^1.2.23",
"@types/fast-json-stable-stringify": "^2.1.2",
"@types/object-hash": "^3.0.6",
"@types/rbush": "^4.0.0",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vercel/node": "^5.1.7",
"@vitejs/plugin-react": "^4.3.4",
"bun-match-svg": "^0.0.14",
"circuit-json-to-connectivity-map": "^0.0.19",
"circuit-to-svg": "^0.0.220",
"clsx": "^2.1.1",
"flatbush": "^4.4.0",
"graphics-debug": "^0.0.77",
"high-density-dataset-z04": "git+https://github.com/tscircuit/high-density-dataset-z04.git#b9128ed52f5a50102b6526319be1d4ec33dca2c2",
"kleur": "^4.1.5",
"looks-same": "9",
"rbush": "^4.0.1",
"react": "18",
"react-cosmos": "^6.2.3",
"react-cosmos-plugin-vite": "^6.2.0",
"react-dom": "18",
"react-konva": "18",
"recharts": "^2.15.1",
"tailwind-merge": "^3.2.0",
"terser": "^5.43.1",
"tsup": "^8.3.6",
"typescript": "^5.9.3",
"use-mouse-matrix-transform": "^1.3.0",
"vite": "^6.0.11",
"vite-tsconfig-paths": "^5.1.4"
},
"dependencies": {
"@tscircuit/high-density-a01": "^0.0.21",
"fast-json-stable-stringify": "^2.1.0",
"object-hash": "^3.0.0"
}
}