@vinjocarsales/xiao-series 0.1.4
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 +203 -0
- package/assets/MODULE_XIAO_ESP32C3.kicad_mod +43 -0
- package/assets/XIAO_ESP32C3.kicad_sym +170 -0
- package/assets/XIAO_ESP32C3.step +31892 -0
- package/assets/how-to-import.htm +1 -0
- package/assets/xiao-esp32-c3.step +28357 -0
- package/dist/XiaoEsp32C3Dip.d.ts +7 -0
- package/dist/XiaoEsp32C3Smd.d.ts +7 -0
- package/dist/XiaoEsp32S3Dip.d.ts +6 -0
- package/dist/XiaoEsp32S3Smd.d.ts +6 -0
- package/dist/cadModels.d.ts +16 -0
- package/dist/footprints.d.ts +4 -0
- package/dist/index.cjs +424 -0
- package/dist/index.d.ts +151 -0
- package/dist/index.html +77 -0
- package/dist/index.js +404 -0
- package/dist/pins.d.ts +116 -0
- package/dist/src/index.ts/3d.png +0 -0
- package/dist/src/index.ts/circuit.json +1554 -0
- package/dist/src/index.ts/pcb.svg +1 -0
- package/dist/src/index.ts/schematic.svg +25 -0
- package/dist/xiao-esp32-c3-CQVW2UT3.step +28357 -0
- package/package.json +59 -0
package/package.json
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@vinjocarsales/xiao-series",
|
|
3
|
+
"version": "0.1.4",
|
|
4
|
+
"description": "Reusable tscircuit components for Seeed Studio XIAO ESP32-S3 and ESP32-C3 modules.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist",
|
|
17
|
+
"assets",
|
|
18
|
+
"README.md"
|
|
19
|
+
],
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "tsup src/index.ts --format esm --clean --loader:.step=file --loader:.stp=file && tsc -p tsconfig.build.json",
|
|
22
|
+
"typecheck": "tsc --noEmit"
|
|
23
|
+
},
|
|
24
|
+
"keywords": [
|
|
25
|
+
"tscircuit",
|
|
26
|
+
"xiao",
|
|
27
|
+
"seeed",
|
|
28
|
+
"esp32-s3",
|
|
29
|
+
"esp32-c3",
|
|
30
|
+
"footprint"
|
|
31
|
+
],
|
|
32
|
+
"license": "MIT",
|
|
33
|
+
"peerDependencies": {
|
|
34
|
+
"@tscircuit/core": "^0.0.1325",
|
|
35
|
+
"@tscircuit/props": "^0.0.546",
|
|
36
|
+
"react": ">=18"
|
|
37
|
+
},
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@tscircuit/core": "^0.0.1325",
|
|
40
|
+
"@tscircuit/props": "^0.0.546",
|
|
41
|
+
"@types/react": "^19.1.8",
|
|
42
|
+
"tsup": "^8.5.0",
|
|
43
|
+
"typescript": "^5.8.3"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@tscircuit/copper-pour-solver": "^0.0.32",
|
|
47
|
+
"@tscircuit/infer-cable-insertion-point": "^0.0.2",
|
|
48
|
+
"@tscircuit/miniflex": "^0.0.4",
|
|
49
|
+
"@tscircuit/schematic-trace-solver": "^0.0.68",
|
|
50
|
+
"@tscircuit/soup-util": "^0.0.41",
|
|
51
|
+
"calculate-elbow": "^0.0.12",
|
|
52
|
+
"circuit-json-to-spice": "^0.0.37",
|
|
53
|
+
"connectivity-map": "^1.0.0",
|
|
54
|
+
"flatbush": "^4.6.2",
|
|
55
|
+
"minicssgrid": "^0.0.9",
|
|
56
|
+
"spicets": "^0.0.4",
|
|
57
|
+
"spicey": "^0.0.14"
|
|
58
|
+
}
|
|
59
|
+
}
|