biscuitboard 1.0.1
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/LICENSE +21 -0
- package/README.md +377 -0
- package/dist/npm.cjs +16563 -0
- package/dist/npm.cjs.map +1 -0
- package/dist/npm.d.cts +769 -0
- package/dist/npm.d.ts +769 -0
- package/dist/npm.js +16425 -0
- package/dist/npm.js.map +1 -0
- package/package.json +110 -0
package/package.json
ADDED
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "biscuitboard",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Prefabricated copper-clad board wrappers and fixed-via autorouting for tscircuit",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "./dist/npm.cjs",
|
|
8
|
+
"module": "./dist/npm.js",
|
|
9
|
+
"types": "./dist/npm.d.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./dist/npm.d.ts",
|
|
13
|
+
"import": "./dist/npm.js",
|
|
14
|
+
"require": "./dist/npm.cjs"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist"
|
|
19
|
+
],
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "https://github.com/tscircuit/biscuit-boards.git"
|
|
23
|
+
},
|
|
24
|
+
"keywords": [
|
|
25
|
+
"tscircuit"
|
|
26
|
+
],
|
|
27
|
+
"scripts": {
|
|
28
|
+
"dev": "tsci dev",
|
|
29
|
+
"analyze:boosterpack": "bun run scripts/analyze-boosterpack-routing.tsx",
|
|
30
|
+
"build": "tsup",
|
|
31
|
+
"build:circuit": "tsci build index.tsx",
|
|
32
|
+
"build:breadboard-clad": "tsci build examples/breadboard-clad.tsx --disable-parts-engine --svgs",
|
|
33
|
+
"build:clad-40x40": "tsci build examples/clad-40x40.tsx --disable-parts-engine --svgs",
|
|
34
|
+
"build:clad-panel": "tsci build examples/clad-panel.tsx --disable-parts-engine --svgs",
|
|
35
|
+
"build:four-board-clad-panel": "tsci build examples/four-board-clad-panel.tsx --disable-parts-engine --svgs",
|
|
36
|
+
"build:feather-clad-with-pin-headers": "tsci build examples/feather-clad-with-pin-headers.tsx --disable-parts-engine --svgs",
|
|
37
|
+
"build:xiao-pair-clad-panel": "tsci build examples/xiao-pair-clad-panel.tsx --disable-parts-engine --svgs",
|
|
38
|
+
"build:arduino-shield": "tsci build examples/arduino-shield-clad.tsx --disable-parts-engine --svgs",
|
|
39
|
+
"build:arduino-display": "tsci build examples/stm32c071-display-arduino-shield.tsx --disable-parts-engine --svgs",
|
|
40
|
+
"build:boosterpack": "tsci build examples/stm32c071-display-boosterpack.tsx --disable-parts-engine --svgs",
|
|
41
|
+
"build:example": "tsci build examples/stm32c071.tsx --disable-parts-engine --svgs",
|
|
42
|
+
"build:xiao-stm32-usb": "tsci build examples/xiao-stm32-usb.tsx --disable-parts-engine --svgs",
|
|
43
|
+
"export:lightburn": "bun run scripts/export-lightburn.tsx",
|
|
44
|
+
"export:gerbers:no-solder-mask": "bun run scripts/export-gerbers-without-solder-mask.ts",
|
|
45
|
+
"export:stencil-step": "bun run scripts/export-stencil-step.ts",
|
|
46
|
+
"generate:lens-calibration": "bun run scripts/generate-lens-calibration.ts",
|
|
47
|
+
"setup:test-deps": "bun run --cwd node_modules/sharp install",
|
|
48
|
+
"snapshot": "tsci snapshot",
|
|
49
|
+
"snapshot:breadboard-clad": "tsci snapshot examples/breadboard-clad.tsx --disable-parts-engine --pcb-only --ci",
|
|
50
|
+
"snapshot:breadboard-clad:update": "tsci snapshot examples/breadboard-clad.tsx --disable-parts-engine --pcb-only --update",
|
|
51
|
+
"snapshot:clad-40x40": "tsci snapshot examples/clad-40x40.tsx --disable-parts-engine --pcb-only --ci",
|
|
52
|
+
"snapshot:clad-40x40:update": "tsci snapshot examples/clad-40x40.tsx --disable-parts-engine --pcb-only --update",
|
|
53
|
+
"snapshot:clad-panel": "tsci snapshot examples/clad-panel.tsx --disable-parts-engine --pcb-only --ci",
|
|
54
|
+
"snapshot:clad-panel:update": "tsci snapshot examples/clad-panel.tsx --disable-parts-engine --pcb-only --update",
|
|
55
|
+
"snapshot:four-board-clad-panel": "tsci snapshot examples/four-board-clad-panel.tsx --disable-parts-engine --pcb-only --ci",
|
|
56
|
+
"snapshot:four-board-clad-panel:update": "tsci snapshot examples/four-board-clad-panel.tsx --disable-parts-engine --pcb-only --update",
|
|
57
|
+
"snapshot:feather-clad-with-pin-headers": "tsci snapshot examples/feather-clad-with-pin-headers.tsx --disable-parts-engine --pcb-only --ci",
|
|
58
|
+
"snapshot:feather-clad-with-pin-headers:update": "tsci snapshot examples/feather-clad-with-pin-headers.tsx --disable-parts-engine --pcb-only --update",
|
|
59
|
+
"snapshot:xiao-pair-clad-panel": "tsci snapshot examples/xiao-pair-clad-panel.tsx --disable-parts-engine --pcb-only --ci",
|
|
60
|
+
"snapshot:xiao-pair-clad-panel:update": "tsci snapshot examples/xiao-pair-clad-panel.tsx --disable-parts-engine --pcb-only --update",
|
|
61
|
+
"snapshot:update": "tsci snapshot --update",
|
|
62
|
+
"snapshot:stm32": "tsci snapshot examples/stm32c071.tsx --disable-parts-engine --ci",
|
|
63
|
+
"snapshot:stm32:update": "tsci snapshot examples/stm32c071.tsx --disable-parts-engine --update",
|
|
64
|
+
"snapshot:rp2040": "tsci snapshot examples/rp2040.tsx --disable-parts-engine --ci",
|
|
65
|
+
"snapshot:rp2040:update": "tsci snapshot examples/rp2040.tsx --disable-parts-engine --update",
|
|
66
|
+
"snapshot:boosterpack": "tsci snapshot examples/stm32c071-display-boosterpack.tsx --disable-parts-engine --pcb-only --ci",
|
|
67
|
+
"snapshot:boosterpack:update": "tsci snapshot examples/stm32c071-display-boosterpack.tsx --disable-parts-engine --pcb-only --update",
|
|
68
|
+
"snapshot:boosterpack-clad": "tsci snapshot examples/boosterpack-clad.tsx --disable-parts-engine --pcb-only --ci",
|
|
69
|
+
"snapshot:boosterpack-clad:update": "tsci snapshot examples/boosterpack-clad.tsx --disable-parts-engine --pcb-only --update",
|
|
70
|
+
"snapshot:arduino-shield": "tsci snapshot examples/arduino-shield-clad.tsx --disable-parts-engine --pcb-only --ci",
|
|
71
|
+
"snapshot:arduino-shield:update": "tsci snapshot examples/arduino-shield-clad.tsx --disable-parts-engine --pcb-only --update",
|
|
72
|
+
"snapshot:arduino-display": "tsci snapshot examples/stm32c071-display-arduino-shield.tsx --disable-parts-engine --pcb-only --ci",
|
|
73
|
+
"snapshot:arduino-display:update": "tsci snapshot examples/stm32c071-display-arduino-shield.tsx --disable-parts-engine --pcb-only --update",
|
|
74
|
+
"snapshot:xiao-clad-with-pin-headers": "tsci snapshot examples/xiao-clad-with-pin-headers.tsx --disable-parts-engine --pcb-only --ci",
|
|
75
|
+
"snapshot:xiao-clad-with-pin-headers:update": "tsci snapshot examples/xiao-clad-with-pin-headers.tsx --disable-parts-engine --pcb-only --update",
|
|
76
|
+
"snapshot:xiao-clad-with-perforated-pin-headers": "tsci snapshot examples/xiao-clad-with-perforated-pin-headers.tsx --disable-parts-engine --pcb-only --ci",
|
|
77
|
+
"snapshot:xiao-clad-with-perforated-pin-headers:update": "tsci snapshot examples/xiao-clad-with-perforated-pin-headers.tsx --disable-parts-engine --pcb-only --update",
|
|
78
|
+
"snapshot:xiao-stm32-usb": "tsci snapshot examples/xiao-stm32-usb.tsx --disable-parts-engine --pcb-only --ci",
|
|
79
|
+
"snapshot:xiao-stm32-usb:update": "tsci snapshot examples/xiao-stm32-usb.tsx --disable-parts-engine --pcb-only --update",
|
|
80
|
+
"snapshot:lightburn": "bun test tests/lightburn-export.test.tsx tests/lightburn-lens-distortion.test.tsx",
|
|
81
|
+
"snapshot:lightburn:update": "BUN_UPDATE_SNAPSHOTS=1 bun test tests/lightburn-export.test.tsx tests/lightburn-lens-distortion.test.tsx",
|
|
82
|
+
"start": "tsci dev",
|
|
83
|
+
"test": "bun test",
|
|
84
|
+
"check:package": "bun run scripts/check-npm-package.ts",
|
|
85
|
+
"typecheck": "tsc --noEmit",
|
|
86
|
+
"prepack": "bun run build && bun run scripts/prepare-npm-package.ts",
|
|
87
|
+
"postpack": "bun run scripts/restore-npm-package.ts",
|
|
88
|
+
"check": "bun run typecheck && bun run test && bun run snapshot:stm32 && bun run snapshot:rp2040 && bun run snapshot:boosterpack && bun run snapshot:boosterpack-clad && bun run snapshot:arduino-shield && bun run snapshot:arduino-display && bun run snapshot:breadboard-clad && bun run snapshot:clad-40x40 && bun run snapshot:xiao-clad-with-pin-headers && bun run snapshot:xiao-clad-with-perforated-pin-headers && bun run snapshot:xiao-stm32-usb && bun run snapshot:feather-clad-with-pin-headers && bun run snapshot:clad-panel && bun run snapshot:four-board-clad-panel && bun run snapshot:xiao-pair-clad-panel && bun run build && bun run build:circuit && bun run build:example && bun run build:arduino-shield && bun run build:arduino-display && bun run build:breadboard-clad && bun run build:clad-40x40 && bun run build:xiao-stm32-usb && bun run build:feather-clad-with-pin-headers && bun run build:clad-panel && bun run build:four-board-clad-panel && bun run build:xiao-pair-clad-panel && bun run export:lightburn examples/stm32c071-display.tsx"
|
|
89
|
+
},
|
|
90
|
+
"devDependencies": {
|
|
91
|
+
"@biomejs/biome": "^2.3.4",
|
|
92
|
+
"@tscircuit/checks": "0.0.151",
|
|
93
|
+
"@tscircuit/common": "0.0.56",
|
|
94
|
+
"@types/bun": "^1.3.14",
|
|
95
|
+
"@types/react": "19.2.18",
|
|
96
|
+
"@tscircuit/biscuit-board-autorouter": "github:tscircuit/biscuit-board-autorouter#a704ab5d6f9693924fe716710c57a7787fe943f4",
|
|
97
|
+
"bun-match-svg": "0.0.15",
|
|
98
|
+
"react": "19.2.0",
|
|
99
|
+
"tscircuit": "0.0.2277",
|
|
100
|
+
"tsup": "^8.5.1",
|
|
101
|
+
"typescript": "5.9.3"
|
|
102
|
+
},
|
|
103
|
+
"dependencies": {
|
|
104
|
+
"@tscircuit/core": "0.0.1641",
|
|
105
|
+
"@tscircuit/props": "0.0.617"
|
|
106
|
+
},
|
|
107
|
+
"peerDependencies": {
|
|
108
|
+
"react": "^19.2.0"
|
|
109
|
+
}
|
|
110
|
+
}
|