-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.13 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
44
45
46
{
"name": "easyeda",
"type": "module",
"version": "0.0.111",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/tscircuit/easyeda-converter"
},
"scripts": {
"test": "bun test",
"cli": "bun cli/main.ts",
"build": "tsup lib/index.ts cli/main.ts --format esm --dts --sourcemap",
"aider": "aider",
"format:check": "biome format .",
"format": "biome format . --write",
"add-test-for-part": "bun run scripts/add-test-for-part.ts"
},
"main": "./dist/lib/index.js",
"bin": {
"easyeda-converter": "./dist/cli/main.js",
"easyeda": "./dist/cli/main.js"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@tscircuit/log-soup": "1.0.2",
"@tscircuit/props": "^0.0.141",
"@tscircuit/soup-util": "^0.0.41",
"@types/bun": "latest",
"bun-match-svg": "^0.0.6",
"circuit-json": "^0.0.92",
"circuit-to-svg": "^0.0.56",
"tsup": "^8.1.0"
},
"peerDependencies": {
"typescript": "^5.5.2"
},
"dependencies": {
"@tscircuit/mm": "^0.0.8",
"commander": "^12.1.0",
"transformation-matrix": "^2.16.1",
"zod": "^3.23.8"
}
}