-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.42 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.42 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
{
"name": "@tscircuit/schematic-viewer",
"version": "2.0.58",
"main": "dist/index.js",
"type": "module",
"scripts": {
"start": "cosmos",
"build:webworker": "tsup --config tsup-webworker.config.ts",
"build:blob-url": "bun scripts/build-worker-blob-url.ts",
"build": "bun run build:webworker && bun run build:blob-url && tsup-node ./lib/index.ts --dts --format esm --sourcemap",
"build:site": "cosmos-export",
"vercel-build": "bun run build:webworker && bun run build:blob-url && bun run build:site",
"format": "biome format --write .",
"format:check": "biome format ."
},
"files": [
"dist"
],
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "latest",
"@types/debug": "^4.1.12",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"@types/recharts": "^2.0.1",
"@vitejs/plugin-react": "^4.3.4",
"react": "^19.1.0",
"react-cosmos": "^6.2.1",
"react-cosmos-plugin-vite": "^6.2.0",
"react-dom": "^19.1.0",
"react-reconciler": "^0.31.0",
"semver": "^7.7.2",
"tscircuit": "^0.0.1437",
"tsup": "^8.3.5",
"vite": "^6.0.3"
},
"peerDependencies": {
"typescript": "^5.0.0",
"tscircuit": "*"
},
"dependencies": {
"chart.js": "^4.5.0",
"circuit-json-to-spice": "^0.0.30",
"debug": "^4.4.0",
"performance-now": "^2.1.0",
"react-chartjs-2": "^5.3.0",
"use-mouse-matrix-transform": "^1.2.2"
}
}