easyeda 0.0.28 → 0.0.30
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/dist/cli/main.cjs +4740 -3032
- package/dist/cli/main.cjs.map +1 -1
- package/dist/lib/index.cjs +4884 -3120
- package/dist/lib/index.cjs.map +1 -1
- package/dist/lib/index.d.cts +7 -1
- package/package.json +4 -4
package/dist/lib/index.d.cts
CHANGED
|
@@ -3892,4 +3892,10 @@ declare const convertRawEasyEdaToTs: (rawEasy: any) => Promise<string>;
|
|
|
3892
3892
|
|
|
3893
3893
|
declare function normalizeManufacturerPartNumber(partNumber: string): string;
|
|
3894
3894
|
|
|
3895
|
-
|
|
3895
|
+
declare const convertEasyEdaJsonToVariousFormats: ({ jlcpcbPartNumberOrFilepath, outputFilename, formatType, }: {
|
|
3896
|
+
jlcpcbPartNumberOrFilepath: string;
|
|
3897
|
+
outputFilename: string;
|
|
3898
|
+
formatType: string;
|
|
3899
|
+
}) => Promise<void>;
|
|
3900
|
+
|
|
3901
|
+
export { BBoxSchema, type BetterEasyEdaJson, DataStrSchema, EasyEdaJsonSchema, HeadSchema, LayerItemSchema, LcscSchema, ObjectItemSchema, OwnerSchema, PackageDetailDataStrSchema, PackageDetailSchema, type RawEasyEdaJson, SzlcscSchema, convertEasyEdaJsonToTscircuitSoupJson, convertEasyEdaJsonToVariousFormats, convertRawEasyEdaToTs, fetchEasyEDAComponent, maybeNumber, normalizeManufacturerPartNumber };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "easyeda",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.30",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
7
7
|
],
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"@biomejs/biome": "^1.8.3",
|
|
26
26
|
"@tscircuit/builder": "^1.5.131",
|
|
27
27
|
"@tscircuit/log-soup": "1.0.2",
|
|
28
|
-
"@tscircuit/soup": "^0.0.
|
|
29
|
-
"@tscircuit/soup-util": "^0.0.
|
|
28
|
+
"@tscircuit/soup": "^0.0.73",
|
|
29
|
+
"@tscircuit/soup-util": "^0.0.31",
|
|
30
30
|
"@types/bun": "latest",
|
|
31
31
|
"tsup": "^8.1.0"
|
|
32
32
|
},
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"typescript": "^5.5.2"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@tscircuit/mm": "^0.0.
|
|
37
|
+
"@tscircuit/mm": "^0.0.8",
|
|
38
38
|
"commander": "^12.1.0",
|
|
39
39
|
"transformation-matrix": "^2.16.1",
|
|
40
40
|
"zod": "^3.23.8"
|