-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
38 lines (38 loc) · 1.04 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "circuit-json",
"version": "0.0.135",
"description": "Definitions for the tscircuit intermediary JSON format",
"main": "dist/index.mjs",
"files": [
"dist"
],
"scripts": {
"prepublish": "npm run build",
"build": "tsup-node ./src/index.ts --format esm --dts --sourcemap",
"format": "biome format . --write",
"generate-docs": "bun scripts/generate-readme-docs.ts && prettier --no-semi -w README.md",
"lint:zod": "bun run scripts/zod-lint.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@anthropic-ai/sdk": "^0.30.1",
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.1.15",
"@types/convert-units": "^2.3.9",
"@types/node": "^22.10.2",
"@typescript-eslint/parser": "^8.18.1",
"@typescript-eslint/typescript-estree": "^8.18.1",
"esbuild": "^0.20.2",
"prettier": "^3.4.2",
"ts-expect": "^1.3.0",
"ts-node": "^10.9.2",
"tsup": "^8.3.0",
"typescript": "^5.7.2"
},
"dependencies": {
"nanoid": "^5.0.7",
"zod": "^3.23.6"
}
}