-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
79 lines (79 loc) · 2.21 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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@tscircuit/3d-viewer",
"version": "0.0.115",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"scripts": {
"start": "bun run storybook",
"dev:old": "bunx --bun vite",
"build": "tsup",
"prepublish": "npm run build",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"vercel-build": "bun run build-storybook",
"format": "biome format . --write",
"format:check": "biome format ."
},
"dependencies": {
"@jscad/modeling": "^2.12.5",
"@jscad/regl-renderer": "^2.6.12",
"@jscad/stl-serializer": "^2.1.20",
"@react-three/drei": "^9.121.4",
"@react-three/fiber": "^8.17.14",
"@tscircuit/core": "^0.0.297",
"@tscircuit/props": "^0.0.138",
"@tscircuit/react-fiber": "^1.2.0",
"@tscircuit/soup": "^0.0.69",
"@tscircuit/soup-util": "^0.0.26",
"jscad-electronics": "^0.0.23",
"jscad-fiber": "^0.0.76",
"jscad-planner": "^0.0.11",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-use-gesture": "^9.1.3"
},
"peerDependencies": {
"three": "*"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@chromatic-com/storybook": "^1.9.0",
"@storybook/addon-essentials": "^8.5.2",
"@storybook/addon-interactions": "^8.5.2",
"@storybook/addon-links": "^8.5.2",
"@storybook/addon-onboarding": "^8.5.2",
"@storybook/blocks": "^8.5.2",
"@storybook/builder-vite": "^8.5.2",
"@storybook/react": "^8.5.2",
"@storybook/react-vite": "^8.5.2",
"@storybook/test": "^8.5.2",
"@types/jsdom": "^21.1.7",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/three": "^0.165.0",
"@vitejs/plugin-react": "^4.3.4",
"bun-match-svg": "^0.0.9",
"bun-types": "^1.2.1",
"circuit-json": "^0.0.116",
"circuit-to-svg": "^0.0.91",
"debug": "^4.4.0",
"jsdom": "^26.0.0",
"storybook": "^8.5.2",
"strip-ansi": "^7.1.0",
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"vite": "^5.4.14",
"vite-tsconfig-paths": "^4.3.2"
}
}