-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.4 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
{
"name": "circuit-json-to-step",
"main": "dist/index.js",
"version": "0.0.35",
"type": "module",
"scripts": {
"pull-reference": "git clone https://github.com/tscircuit/circuit-json.git && find circuit-json/tests -name '*.test.ts' -exec bash -c 'mv \"$0\" \"${0%.test.ts}.ts\"' {} \\; && git clone https://github.com/tscircuit/stepts.git && find stepts/tests -name '*.test.ts' -exec bash -c 'mv \"$0\" \"${0%.test.ts}.ts\"' {} \\;",
"test": "bun test",
"test:update-snapshots": "BUN_UPDATE_SNAPSHOTS=1 bun test",
"build": "tsup-node ./lib/index.ts --format esm --dts",
"format": "biome format --write .",
"format:check": "biome format .",
"start": "bun site/index.html",
"build:site": "bun build site/index.html --outdir=site-export"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@resvg/resvg-js": "^2.6.2",
"@resvg/resvg-wasm": "^2.6.2",
"@tscircuit/circuit-json-util": "^0.0.75",
"@types/bun": "latest",
"circuit-json": "^0.0.425",
"looks-same": "^10.0.1",
"occt-import-js": "^0.0.23",
"poppygl": "^0.0.24",
"tsup": "^8.5.0"
},
"peerDependencies": {
"@tscircuit/circuit-json-util": "*",
"typescript": "^5"
},
"dependencies": {
"circuit-json-to-connectivity-map": "^0.0.22",
"circuit-json-to-gltf": "^0.0.102",
"circuit-to-svg": "^0.0.354",
"schematic-symbols": "^0.0.202",
"stepts": "^0.0.4"
}
}