-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 912 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 912 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
36
37
{
"name": "circuit-json-to-3d-png",
"version": "0.0.1",
"description": "Convert circuit-json designs into 3D PNG renders.",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"type": "module",
"scripts": {
"build": "tsup-node lib/index.ts --format esm --dts",
"prepack": "npm run build",
"typecheck": "bunx tsc --noEmit",
"format": "biome format --write .",
"format:check": "biome format ."
},
"files": ["dist"],
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@types/bun": "latest",
"tsup": "^8.5.1"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@resvg/resvg-js": "^2.6.2",
"circuit-json": "^0.0.422",
"circuit-json-to-gltf": "^0.0.97",
"poppygl": "^0.0.20"
}
}