-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 843 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 843 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
{
"name": "kicadts",
"main": "dist/index.js",
"version": "0.0.37",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/tscircuit/kicadts"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup-node lib/index.ts --format esm --dts",
"download-references": "bun run scripts/download-references.ts",
"download-demos": "git clone --depth 1 --filter=blob:none --sparse https://gitlab.com/kicad/code/kicad.git kicad-demos && cd kicad-demos && git sparse-checkout set demos",
"typecheck": "bunx tsc --noEmit",
"format": "biome format --write .",
"format:check": "biome format ."
},
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"@types/bun": "latest",
"looks-same": "^10.0.1",
"tsup": "^8.5.0"
},
"peerDependencies": {
"typescript": "^5"
}
}