easyeda 0.0.2 → 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/dist/cli/main.cjs +6 -3
- package/dist/cli/main.cjs.map +1 -1
- package/package.json +6 -3
- package/ai-assist-docs/soup-reference.md +0 -1325
- package/bun.lockb +0 -0
- package/cli/main.ts +0 -67
- package/dist/index.cjs +0 -29196
- package/dist/index.cjs.map +0 -1
- package/dist/index.d.cts +0 -1553
- package/lib/convert-easyeda-json-to-tscircuit-soup-json.ts +0 -204
- package/lib/fetch-easyeda-json.ts +0 -66
- package/lib/index.ts +0 -2
- package/lib/math/arc-utils.ts +0 -170
- package/lib/schemas/easy-eda-json-schema.ts +0 -158
- package/lib/schemas/package-detail-shape-schema.ts +0 -251
- package/lib/schemas/single-letter-shape-schema.ts +0 -201
- package/renovate.json +0 -6
- package/scripts/get-easyeda-json.ts +0 -12
- package/tests/assets/a555-timer-dip.raweasy.json +0 -244
- package/tests/assets/a555-timer-smd.raweasy.json +0 -226
- package/tests/assets/esp32.raweasy.json +0 -333
- package/tests/assets/usb-c.raweasy.json +0 -263
- package/tests/convert-to-soup-tests/a555timer-smd.test.ts +0 -18
- package/tests/convert-to-soup-tests/convert-easyeda-to-tscircuit-soup.test.ts +0 -49
- package/tests/convert-to-soup-tests/convert-usb-c-to-soup.test.ts +0 -18
- package/tests/convert-to-soup-tests/esp32-to-soup.test.ts +0 -13
- package/tests/parse-tests/parse-555-timer-json.test.ts +0 -9
- package/tests/parse-tests/parse-esp32.test.ts +0 -9
- package/tests/parse-tests/parse-usb-c.test.ts +0 -9
- package/tests/parse-tests/single-letter-shape-schema.test.ts +0 -30
- package/tsconfig.json +0 -28
package/dist/cli/main.cjs
CHANGED
|
@@ -29168,7 +29168,10 @@ var import_promises = __toESM(require("fs/promises"), 1);
|
|
|
29168
29168
|
var package_default = {
|
|
29169
29169
|
name: "easyeda",
|
|
29170
29170
|
type: "module",
|
|
29171
|
-
version: "0.0.
|
|
29171
|
+
version: "0.0.3",
|
|
29172
|
+
files: [
|
|
29173
|
+
"dist"
|
|
29174
|
+
],
|
|
29172
29175
|
scripts: {
|
|
29173
29176
|
test: "bun test",
|
|
29174
29177
|
build: "tsup lib/index.ts cli/main.ts --dts --sourcemap",
|
|
@@ -29176,8 +29179,8 @@ var package_default = {
|
|
|
29176
29179
|
},
|
|
29177
29180
|
main: "./dist/lib/index.cjs",
|
|
29178
29181
|
bin: {
|
|
29179
|
-
"easyeda-converter": "./dist/
|
|
29180
|
-
easyeda: "./dist/
|
|
29182
|
+
"easyeda-converter": "./dist/cli/main.cjs",
|
|
29183
|
+
easyeda: "./dist/cli/main.cjs"
|
|
29181
29184
|
},
|
|
29182
29185
|
devDependencies: {
|
|
29183
29186
|
"@tscircuit/builder": "^1.5.131",
|