circuit-json-to-tscircuit 0.0.6 → 0.0.7

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/dist/cli/main.js +6 -2
  2. package/package.json +6 -2
package/dist/cli/main.js CHANGED
@@ -3329,9 +3329,13 @@ import { readFile, writeFile } from "node:fs/promises";
3329
3329
  // package.json
3330
3330
  var package_default = {
3331
3331
  name: "circuit-json-to-tscircuit",
3332
- main: "dist/index.js",
3332
+ main: "dist/lib/index.js",
3333
+ exports: {
3334
+ ".": "./dist/lib/index.js",
3335
+ "./cli": "./dist/cli/main.js"
3336
+ },
3333
3337
  type: "module",
3334
- version: "0.0.5",
3338
+ version: "0.0.6",
3335
3339
  scripts: {
3336
3340
  build: "tsup lib/index.ts cli/main.ts --format esm --dts",
3337
3341
  test: "bun test",
package/package.json CHANGED
@@ -1,8 +1,12 @@
1
1
  {
2
2
  "name": "circuit-json-to-tscircuit",
3
- "main": "dist/index.js",
3
+ "main": "dist/lib/index.js",
4
+ "exports": {
5
+ ".": "./dist/lib/index.js",
6
+ "./cli": "./dist/cli/main.js"
7
+ },
4
8
  "type": "module",
5
- "version": "0.0.6",
9
+ "version": "0.0.7",
6
10
  "scripts": {
7
11
  "build": "tsup lib/index.ts cli/main.ts --format esm --dts",
8
12
  "test": "bun test",