tscircuit 0.0.1004 → 0.0.1005-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 +2 -2
- 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.1005-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",
|
|
@@ -54,7 +49,6 @@
|
|
|
54
49
|
"@tscircuit/checks": "^0.0.87",
|
|
55
50
|
"@tscircuit/circuit-json-flex": "^0.0.3",
|
|
56
51
|
"@tscircuit/circuit-json-util": "^0.0.72",
|
|
57
|
-
"@tscircuit/cli": "^0.1.596",
|
|
58
52
|
"@tscircuit/copper-pour-solver": "^0.0.14",
|
|
59
53
|
"@tscircuit/core": "^0.0.895",
|
|
60
54
|
"@tscircuit/eval": "^0.0.510",
|
|
@@ -65,7 +59,7 @@
|
|
|
65
59
|
"@tscircuit/miniflex": "^0.0.4",
|
|
66
60
|
"@tscircuit/ngspice-spice-engine": "^0.0.4",
|
|
67
61
|
"@tscircuit/props": "^0.0.423",
|
|
68
|
-
"@tscircuit/runframe": "^0.0.
|
|
62
|
+
"@tscircuit/runframe": "^0.0.1328",
|
|
69
63
|
"@tscircuit/schematic-match-adapt": "^0.0.16",
|
|
70
64
|
"@tscircuit/schematic-trace-solver": "^v0.0.45",
|
|
71
65
|
"@tscircuit/simple-3d-svg": "^0.0.41",
|
|
@@ -105,4 +99,4 @@
|
|
|
105
99
|
"transformation-matrix": "^2.16.1",
|
|
106
100
|
"zod": "^3.25.67"
|
|
107
101
|
}
|
|
108
|
-
}
|
|
102
|
+
}
|
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();
|