tscircuit 0.0.872 → 0.0.873-libonly
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/browser.min.js +892 -892
- package/package.json +3 -9
- package/cli.mjs +0 -14
package/package.json
CHANGED
|
@@ -3,14 +3,13 @@
|
|
|
3
3
|
"main": "dist/index.js",
|
|
4
4
|
"types": "dist/index.d.ts",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"version": "0.0.
|
|
6
|
+
"version": "0.0.873-libonly",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "https://github.com/tscircuit/tscircuit"
|
|
10
10
|
},
|
|
11
11
|
"files": [
|
|
12
12
|
"dist",
|
|
13
|
-
"cli.mjs",
|
|
14
13
|
"globals.d.ts"
|
|
15
14
|
],
|
|
16
15
|
"scripts": {
|
|
@@ -29,10 +28,6 @@
|
|
|
29
28
|
},
|
|
30
29
|
"./browser": "./dist/browser.min.js"
|
|
31
30
|
},
|
|
32
|
-
"bin": {
|
|
33
|
-
"tsci": "cli.mjs",
|
|
34
|
-
"tscircuit": "cli.mjs"
|
|
35
|
-
},
|
|
36
31
|
"devDependencies": {
|
|
37
32
|
"@types/bun": "^1.2.16",
|
|
38
33
|
"esbuild": "^0.20.2",
|
|
@@ -50,7 +45,6 @@
|
|
|
50
45
|
"@tscircuit/checks": "^0.0.85",
|
|
51
46
|
"@tscircuit/circuit-json-flex": "^0.0.3",
|
|
52
47
|
"@tscircuit/circuit-json-util": "^0.0.72",
|
|
53
|
-
"@tscircuit/cli": "^0.1.464",
|
|
54
48
|
"@tscircuit/copper-pour-solver": "^0.0.12",
|
|
55
49
|
"@tscircuit/core": "^0.0.853",
|
|
56
50
|
"@tscircuit/eval": "^0.0.460",
|
|
@@ -61,7 +55,7 @@
|
|
|
61
55
|
"@tscircuit/miniflex": "^0.0.4",
|
|
62
56
|
"@tscircuit/ngspice-spice-engine": "^0.0.2",
|
|
63
57
|
"@tscircuit/props": "^0.0.396",
|
|
64
|
-
"@tscircuit/runframe": "^0.0.
|
|
58
|
+
"@tscircuit/runframe": "^0.0.1231",
|
|
65
59
|
"@tscircuit/schematic-match-adapt": "^0.0.16",
|
|
66
60
|
"@tscircuit/schematic-trace-solver": "^v0.0.45",
|
|
67
61
|
"@tscircuit/simple-3d-svg": "^0.0.41",
|
|
@@ -97,4 +91,4 @@
|
|
|
97
91
|
"transformation-matrix": "^2.16.1",
|
|
98
92
|
"zod": "^3.25.67"
|
|
99
93
|
}
|
|
100
|
-
}
|
|
94
|
+
}
|
package/cli.mjs
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env bun
|
|
2
|
-
|
|
3
|
-
import { createRequire } from "node:module";
|
|
4
|
-
const require = createRequire(import.meta.url);
|
|
5
|
-
|
|
6
|
-
// Use require to import package.json
|
|
7
|
-
const packageJson = require("./package.json");
|
|
8
|
-
global.TSCIRCUIT_VERSION = packageJson.version;
|
|
9
|
-
|
|
10
|
-
async function main() {
|
|
11
|
-
await import("@tscircuit/cli");
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
main();
|