-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.44 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.44 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
{
"name": "@tscircuit/schematic-corpus",
"version": "0.0.114",
"main": "./dist/index.js",
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@types/bun": "^1.2.18",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"bpc-graph": "^0.0.65",
"bun-match-svg": "^0.0.12",
"calculate-packing": "^0.0.10",
"circuit-json-to-bpc": "^0.0.13",
"graphics-debug": "^0.0.61",
"make-vfs": "^1.0.16",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"tscircuit": "^0.0.568",
"tsdown": "^0.12.9"
},
"peerDependencies": {
"typescript": "^5"
},
"files": [
"dist"
],
"scripts": {
"start": "tsci dev",
"vercel-build": "bun run build && bun run build:site",
"build": "tsci build --ignore-errors && bun run ./scripts/create-bpcs.ts && bun build lib/index.ts --outfile ./dist/index.js && cp ./lib/index.d.ts ./dist/index.d.ts",
"build:svgs": "make-vfs --dir ./designs/__snapshots__ --outfile ./dist/svg-vfs.js --content-format string",
"build:site": "bun run build:svgs && bun build ./site/index.html --outdir ./dist-site && bun run ./scripts/copy-svgs-to-site.ts",
"start:site": "bun run ./site/index.html",
"snapshot": "tsci snapshot --schematic-only",
"snapshot:update": "tsci snapshot --update --schematic-only",
"format": "biome format --write .",
"format:check": "biome format .",
"generate:pin3": "bun scripts/generate-3pin-designs.ts"
},
"type": "module"
}