circuit-json-to-kicad 0.0.1 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +174 -0
- package/dist/index.d.ts +74 -0
- package/dist/index.js +1341 -0
- package/package.json +7 -4
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "circuit-json-to-kicad",
|
|
3
3
|
"main": "dist/index.js",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist"
|
|
8
8
|
],
|
|
9
9
|
"scripts": {
|
|
10
10
|
"build": "tsup-node lib/index.ts --format esm --dts",
|
|
11
|
-
"download-demos": "git clone --depth 1 --filter=blob:none --sparse
|
|
11
|
+
"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",
|
|
12
12
|
"typecheck": "bunx tsc --noEmit",
|
|
13
13
|
"format": "biome format --write .",
|
|
14
14
|
"format:check": "biome format ."
|
|
@@ -16,13 +16,16 @@
|
|
|
16
16
|
"devDependencies": {
|
|
17
17
|
"@biomejs/biome": "^2.2.4",
|
|
18
18
|
"@tscircuit/circuit-json-util": "^0.0.72",
|
|
19
|
+
"@tscircuit/common": "^0.0.5",
|
|
19
20
|
"@types/bun": "latest",
|
|
20
21
|
"circuit-json": "^0.0.267",
|
|
21
22
|
"circuit-to-svg": "^0.0.208",
|
|
22
|
-
"kicadts": "^0.0.
|
|
23
|
+
"kicadts": "^0.0.9",
|
|
23
24
|
"schematic-symbols": "^0.0.202",
|
|
24
25
|
"sharp": "^0.34.4",
|
|
25
|
-
"
|
|
26
|
+
"transformation-matrix": "^3.1.0",
|
|
27
|
+
"tscircuit": "^0.0.698",
|
|
28
|
+
"tsup": "^8.5.0"
|
|
26
29
|
},
|
|
27
30
|
"peerDependencies": {
|
|
28
31
|
"typescript": "^5"
|