forked from tscircuit/circuit-json-to-readable-netlist
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 915 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 915 Bytes
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
{
"name": "circuit-json-to-readable-netlist",
"main": "dist/index.js",
"version": "0.0.15",
"files": [
"dist"
],
"scripts": {
"build": "tsup ./lib/index.ts --format esm --dts",
"test": "bun test",
"format": "biome format . --write",
"format:check": "biome check --write"
},
"type": "module",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@tscircuit/circuit-json-util": "^0.0.90",
"@tscircuit/core": "^0.0.401",
"@tscircuit/math-utils": "^0.0.35",
"@tscircuit/props": "^0.0.178",
"@types/bun": "^1.2.13",
"@types/react": "18",
"circuit-json": "^0.0.170",
"circuit-json-to-connectivity-map": "^0.0.17",
"debug": "^4.4.0",
"react": "18",
"tsup": "^8.3.5"
},
"peerDependencies": {
"typescript": "^5.0.0",
"@tscircuit/circuit-json-util": "*",
"circuit-json-to-connectivity-map": "*",
"circuit-json": "*"
}
}