@tscircuit/cli 0.1.800 → 0.1.802
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/main.js +177 -152
- package/package.json +2 -2
- package/types/tscircuit.config.schema.json +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tscircuit/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.802",
|
|
4
4
|
"main": "dist/main.js",
|
|
5
5
|
"devDependencies": {
|
|
6
6
|
"@babel/standalone": "^7.26.9",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"@tscircuit/file-server": "^0.0.32",
|
|
11
11
|
"@tscircuit/math-utils": "0.0.29",
|
|
12
12
|
"@tscircuit/props": "^0.0.448",
|
|
13
|
-
"@tscircuit/runframe": "^0.0.
|
|
13
|
+
"@tscircuit/runframe": "^0.0.1513",
|
|
14
14
|
"@tscircuit/schematic-match-adapt": "^0.0.22",
|
|
15
15
|
"@types/bun": "^1.2.2",
|
|
16
16
|
"@types/configstore": "^6.0.2",
|
|
@@ -52,6 +52,10 @@
|
|
|
52
52
|
"type": "string",
|
|
53
53
|
"description": "Entry file for KiCad footprint library generation."
|
|
54
54
|
},
|
|
55
|
+
"kicadLibraryName": {
|
|
56
|
+
"type": "string",
|
|
57
|
+
"description": "Name for the generated KiCad library. Falls back to package.json name, then directory name."
|
|
58
|
+
},
|
|
55
59
|
"alwaysUseLatestTscircuitOnCloud": {
|
|
56
60
|
"type": "boolean",
|
|
57
61
|
"description": "Always use the latest TSCircuit version when building on the cloud."
|