circuit-json 0.0.218 → 0.0.219

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 (1) hide show
  1. package/package.json +18 -21
package/package.json CHANGED
@@ -1,21 +1,11 @@
1
1
  {
2
2
  "name": "circuit-json",
3
- "version": "0.0.218",
4
- "description": "Definitions for the tscircuit intermediary JSON format",
3
+ "version": "0.0.219",
4
+ "author": "",
5
5
  "main": "dist/index.mjs",
6
- "files": [
7
- "dist"
8
- ],
9
- "scripts": {
10
- "prepublish": "npm run build",
11
- "build": "tsup-node ./src/index.ts --format esm --dts --sourcemap",
12
- "format": "biome format . --write",
13
- "generate-docs": "bun scripts/generate-readme-docs.ts && prettier --no-semi -w README.md",
14
- "lint:zod": "bun run scripts/zod-lint.ts"
6
+ "dependencies": {
7
+ "nanoid": "^5.0.7"
15
8
  },
16
- "keywords": [],
17
- "author": "",
18
- "license": "ISC",
19
9
  "devDependencies": {
20
10
  "@anthropic-ai/sdk": "^0.30.1",
21
11
  "@biomejs/biome": "^1.9.4",
@@ -29,13 +19,20 @@
29
19
  "ts-expect": "^1.3.0",
30
20
  "ts-node": "^10.9.2",
31
21
  "tsup": "^8.3.0",
32
- "typescript": "^5.7.2"
22
+ "typescript": "^5.7.2",
23
+ "zod": "3"
33
24
  },
34
- "dependencies": {
35
- "nanoid": "^5.0.7",
36
- "zod": "*"
37
- },
38
- "peerDependencies": {
39
- "zod": "*"
25
+ "description": "Definitions for the tscircuit intermediary JSON format",
26
+ "files": [
27
+ "dist"
28
+ ],
29
+ "keywords": [],
30
+ "license": "ISC",
31
+ "scripts": {
32
+ "prepublish": "npm run build",
33
+ "build": "tsup-node ./src/index.ts --format esm --dts --sourcemap",
34
+ "format": "biome format . --write",
35
+ "generate-docs": "bun scripts/generate-readme-docs.ts && prettier --no-semi -w README.md",
36
+ "lint:zod": "bun run scripts/zod-lint.ts"
40
37
  }
41
38
  }