-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 KB
/
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
39
40
41
42
43
{
"name": "@tscircuit/footprinter",
"type": "module",
"version": "0.0.127",
"description": "",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"test": "bun test",
"dev": "cd previews && npm i && npm run storybook",
"build": "tsup ./src/index.ts --format esm --dts --sourcemap",
"format": "biome format . --write",
"generate-gallery": "bun run gallery/generate-grid-content.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@tscircuit/log-soup": "^1.0.2",
"@tscircuit/soup-util": "^0.0.41",
"@types/bun": "^1.2.2",
"@types/node": "^20.12.13",
"bun-match-svg": "^0.0.6",
"circuit-to-svg": "^0.0.42",
"esbuild": "^0.21.4",
"esbuild-register": "^3.5.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@tscircuit/mm": "^0.0.8",
"zod": "^3.23.8"
},
"peerDependencies": {
"circuit-json": "*"
}
}