-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
59 lines (59 loc) · 1.67 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
{
"name": "circuit-to-svg",
"type": "module",
"version": "0.0.101",
"description": "Convert Circuit JSON to SVG",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"start": "storybook dev -p 6006",
"prepublish": "npm run build",
"build": "tsup-node ./lib/index.ts --format esm --dts --sourcemap",
"format": "biome format . --write",
"format:check": "biome format .",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@chromatic-com/storybook": "^1.6.1",
"@storybook/addon-essentials": "^8.2.5",
"@storybook/addon-interactions": "^8.2.5",
"@storybook/addon-links": "^8.2.5",
"@storybook/addon-onboarding": "^8.2.5",
"@storybook/blocks": "^8.2.5",
"@storybook/react": "^8.2.5",
"@storybook/react-vite": "^8.2.5",
"@storybook/test": "^8.2.5",
"@tscircuit/core": "^0.0.267",
"@tscircuit/plop": "^0.0.10",
"@types/bun": "^1.1.9",
"biome": "^0.3.3",
"bun-match-svg": "^0.0.6",
"circuit-json": "^0.0.130",
"esbuild": "^0.20.2",
"performance-now": "^2.1.0",
"react": "^18.3.1",
"schematic-symbols": "^0.0.110",
"storybook": "^8.2.5",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vite-tsconfig-paths": "^5.0.1"
},
"peerDependencies": {
"circuit-json": "*",
"schematic-symbols": "*"
},
"dependencies": {
"@tscircuit/footprinter": "^0.0.91",
"@tscircuit/routing": "^1.3.5",
"@tscircuit/soup-util": "^0.0.41",
"@types/node": "^22.5.5",
"bun-types": "^1.1.40",
"svgson": "^5.3.1",
"transformation-matrix": "^2.16.1"
}
}