-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
68 lines (68 loc) · 2.33 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
{
"name": "autorouting-dataset",
"module": "index.ts",
"type": "module",
"scripts": {
"start": "nodemon --watch frontend --watch module --ext ts,tsx frontend --exec 'bun run build-and-serve'",
"start:next": "next dev",
"build": "vite build && make-vfs --dir ./frontend-dist --content-format string --outfile ./dist/vfs.js",
"build:next": "npm run build && next build",
"build:cli": "tsup ./module/cli.ts --dts --sourcemap --out-dir ./dist",
"build-and-serve": "npm run build && bun --hot module/cli.ts server start",
"format": "biome format --write .",
"format:check": "biome format .",
"build:static": "bun run build && bun scripts/build-static.ts",
"build:infgrid-ijump-astar": "tsup-node ./algos/infinite-grid-ijump-astar/v2/index.ts -d ./algos/infinite-grid-ijump-astar/dist --format esm --dts --sourcemap"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@timohausmann/quadtree-ts": "^2.2.2",
"@tscircuit/core": "^0.0.217",
"@tscircuit/pcb-viewer": "1.4.5",
"@tscircuit/props": "^0.0.108",
"@tscircuit/soup-util": "^0.0.41",
"@types/bun": "^1.2.0",
"@types/d3-delaunay": "^6.0.4",
"@types/debug": "^4.1.12",
"@types/mersenne-twister": "^1.1.7",
"@types/node": "^20.14.11",
"@types/pathfinding": "^0.0.9",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"bun-match-svg": "^0.0.3",
"circuit-to-svg": "^0.0.87",
"concurrently": "^8.2.2",
"d3-delaunay": "^6.0.4",
"debug": "^4.3.6",
"graphics-debug": "^0.0.4",
"madge": "^8.0.0",
"make-vfs": "^1.0.15",
"nanoid": "^5.0.7",
"nodemon": "^3.1.4",
"pathfinding": "^0.4.18",
"performance-now": "^2.1.0",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.13",
"react-query": "^3.39.3",
"vite": "^5.3.4",
"vite-plugin-singlefile": "^2.0.2"
},
"peerDependencies": {
"typescript": "^5.6.3"
},
"dependencies": {
"@dagrejs/graphlib": "^2.2.3",
"@tscircuit/checks": "0.0.28",
"@tscircuit/math-utils": "^0.0.4",
"@vercel/node": "^3.0.24",
"circuit-json": "^0.0.108",
"circuit-json-to-connectivity-map": "^0.0.17",
"commander": "^12.1.0",
"kleur": "^4.1.5",
"mersenne-twister": "^1.1.0",
"next": "^15.0.1",
"raw-body": "^3.0.0",
"tscircuit": "^0.0.258"
}
}