easyeda 0.0.13 → 0.0.15
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 +5 -4
- package/dist/cli/main.cjs +29714 -0
- package/dist/cli/main.cjs.map +1 -0
- package/dist/cli/main.d.cts +1 -0
- package/dist/lib/index.cjs +29606 -0
- package/dist/lib/index.cjs.map +1 -0
- package/dist/lib/index.d.cts +1682 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
# easyeda-converter
|
|
2
2
|
|
|
3
|
-
> [!WARNING]
|
|
4
|
-
> This library is a work in progress! Not everything works yet!
|
|
5
|
-
|
|
6
3
|
Convert easyeda JSON PCB footprints into [tscircuit json soup](https://docs.tscircuit.com/api-reference/advanced/soup)
|
|
7
4
|
|
|
5
|
+
```bash
|
|
6
|
+
npm install -g easyeda
|
|
7
|
+
```
|
|
8
|
+
|
|
8
9
|
## Library Usage
|
|
9
10
|
|
|
10
11
|
```ts
|
|
11
12
|
import {
|
|
12
13
|
fetchEasyEDAComponent,
|
|
13
14
|
convertEasyEdaJsonToTscircuitSoupJson,
|
|
14
|
-
} from "easyeda
|
|
15
|
+
} from "easyeda"
|
|
15
16
|
|
|
16
17
|
// get raweasy json
|
|
17
18
|
const rawEasyJson = await fetchEasyEDAComponent("C46749")
|