-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.35 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.35 KB
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
47
48
49
50
51
52
53
54
55
56
57
{
"name": "easyeda",
"type": "module",
"version": "0.0.256",
"files": [
"dist"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tscircuit/easyeda-converter"
},
"scripts": {
"test": "bun test",
"cli": "bun cli/main.ts",
"build": "tsup",
"aider": "aider",
"format:check": "biome format .",
"format": "biome format . --write",
"add-test-for-part": "bun run scripts/add-test-for-part.ts"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./browser": {
"types": "./dist/browser/index.d.ts",
"default": "./dist/browser/index.js"
}
},
"bin": {
"easyeda-converter": "./dist/main.cjs",
"easyeda": "./dist/main.cjs"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@tscircuit/alphabet": "^0.0.22",
"@tscircuit/circuit-json-util": "^0.0.90",
"@tscircuit/mm": "^0.0.9",
"@types/bun": "latest",
"bun-match-svg": "^0.0.13",
"circuit-json-to-gltf": "^0.0.87",
"circuit-to-svg": "^0.0.340",
"looks-same": "^9.0.1",
"poppygl": "^0.0.19",
"transformation-matrix": "^2.16.1",
"tscircuit": "^0.0.1598",
"tsup": "^8.5.0"
},
"peerDependencies": {
"typescript": "^5.5.2",
"zod": "3"
}
}