@tscircuit/cli 0.1.709 → 0.1.711

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tscircuit/cli",
3
- "version": "0.1.709",
3
+ "version": "0.1.711",
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.423",
13
- "@tscircuit/runframe": "^0.0.1456",
13
+ "@tscircuit/runframe": "^0.0.1457",
14
14
  "@tscircuit/schematic-match-adapt": "^0.0.22",
15
15
  "@types/bun": "^1.2.2",
16
16
  "@types/configstore": "^6.0.2",
@@ -0,0 +1,40 @@
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://cdn.jsdelivr.net/npm/@tscircuit/cli/types/tscircuit.config.schema.json",
4
+ "title": "TSCircuit Config",
5
+ "type": "object",
6
+ "additionalProperties": false,
7
+ "properties": {
8
+ "$schema": {
9
+ "type": "string",
10
+ "format": "uri",
11
+ "description": "JSON schema reference for the config file."
12
+ },
13
+ "mainEntrypoint": {
14
+ "type": "string",
15
+ "description": "Entry file for the circuit project."
16
+ },
17
+ "previewComponentPath": {
18
+ "type": "string",
19
+ "description": "Optional component path used for previews."
20
+ },
21
+ "ignoredFiles": {
22
+ "type": "array",
23
+ "items": {
24
+ "type": "string"
25
+ },
26
+ "description": "File globs to ignore."
27
+ },
28
+ "includeBoardFiles": {
29
+ "type": "array",
30
+ "items": {
31
+ "type": "string"
32
+ },
33
+ "description": "File globs to include as board files."
34
+ },
35
+ "snapshotsDir": {
36
+ "type": "string",
37
+ "description": "Directory path for storing snapshots."
38
+ }
39
+ }
40
+ }