-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.76 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.76 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
{
"name": "circuit-json-to-gltf",
"main": "dist/index.js",
"type": "module",
"version": "0.0.99",
"scripts": {
"test": "bun test tests/",
"test:playwright": "playwright test",
"format": "biome format --write .",
"format:check": "biome format .",
"build:site": "cosmos-export",
"build:font": "bun scripts/encode-font.ts",
"start": "cosmos",
"build": "tsup-node"
},
"files": [
"dist"
],
"dependencies": {
"@jscad/modeling": "^2.12.6",
"earcut": "^3.0.2",
"jscad-electronics": "^0.0.129",
"jscad-to-gltf": "^0.0.5",
"occt-import-js": "^0.0.23"
},
"devDependencies": {
"@biomejs/biome": "^2.1.4",
"@google/model-viewer": "^4.1.0",
"@playwright/test": "^1.58.2",
"@resvg/resvg-js": "^2.6.2",
"@resvg/resvg-wasm": "^2.6.2",
"@tscircuit/alphabet": "^0.0.23",
"@tscircuit/circuit-json-util": "^0.0.94",
"@types/bun": "latest",
"@types/earcut": "^3.0.0",
"@types/react": "^19.1.9",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^5.0.0",
"bun-match-svg": "^0.0.12",
"circuit-json": "^0.0.423",
"circuit-to-svg": "0.0.345",
"graphics-debug": "^0.0.65",
"looks-same": "^9.0.1",
"poppygl": "^0.0.20",
"react": "^19.1.1",
"react-cosmos": "^7.0.0",
"react-cosmos-plugin-vite": "^7.0.0",
"react-dom": "^19.1.1",
"tscircuit": "^0.0.1736",
"tsup": "^8.5.0",
"vite": "^7.1.1"
},
"peerDependencies": {
"typescript": "^5",
"@resvg/resvg-wasm": "2",
"@resvg/resvg-js": "2",
"circuit-to-svg": "*",
"@tscircuit/circuit-json-util": "*",
"circuit-json": "*"
},
"peerDependenciesMeta": {
"@resvg/resvg-wasm": {
"optional": true
},
"@resvg/resvg-js": {
"optional": true
}
}
}