tscircuit 0.0.1889 → 0.0.1890-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.
Files changed (2) hide show
  1. package/package.json +2 -8
  2. package/cli.mjs +0 -14
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "main": "dist/index.js",
4
4
  "types": "dist/index.d.ts",
5
5
  "type": "module",
6
- "version": "0.0.1889",
6
+ "version": "0.0.1890-libonly",
7
7
  "license": "MIT",
8
8
  "repository": {
9
9
  "type": "git",
@@ -11,7 +11,6 @@
11
11
  },
12
12
  "files": [
13
13
  "dist",
14
- "cli.mjs",
15
14
  "globals.d.ts"
16
15
  ],
17
16
  "scripts": {
@@ -30,10 +29,6 @@
30
29
  },
31
30
  "./browser": "./dist/browser.min.js"
32
31
  },
33
- "bin": {
34
- "tsci": "cli.mjs",
35
- "tscircuit": "cli.mjs"
36
- },
37
32
  "devDependencies": {
38
33
  "@types/bun": "^1.2.16",
39
34
  "esbuild": "^0.20.2",
@@ -55,7 +50,6 @@
55
50
  "@tscircuit/capacity-autorouter": "^0.0.583",
56
51
  "@tscircuit/checks": "0.0.138",
57
52
  "@tscircuit/circuit-json-util": "^0.0.96",
58
- "@tscircuit/cli": "^0.1.1503",
59
53
  "@tscircuit/copper-pour-solver": "^0.0.29",
60
54
  "@tscircuit/core": "^0.0.1330",
61
55
  "@tscircuit/eval": "^0.0.929",
@@ -115,4 +109,4 @@
115
109
  "tslib": "^2.8.1",
116
110
  "zod": "^3.25.67"
117
111
  }
118
- }
112
+ }
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();