-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
38 lines (38 loc) · 947 Bytes
/
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
{
"name": "jscad-electronics",
"type": "module",
"version": "0.0.25",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/tscircuit/jscad-electronics"
},
"files": [
"dist"
],
"scripts": {
"start": "cosmos",
"build": "tsup ./lib/index.ts --dts --format esm",
"vercel-build": "bun run build:site",
"format": "biome format --write .",
"format:check": "biome format .",
"build:site": "cosmos-export"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"jscad-fiber": "^0.0.74",
"react": "^18.3.1",
"react-cosmos": "^6.2.0",
"react-cosmos-plugin-vite": "^6.2.0",
"react-dom": "^18.3.1",
"tsup": "^8.3.0",
"vite": "^5.4.8",
"vite-tsconfig-paths": "^5.0.1"
},
"dependencies": {
"@tscircuit/footprinter": "^0.0.124",
"circuit-json": "^0.0.92"
}
}