forked from tscircuit/props
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 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
39
40
41
42
43
44
45
46
{
"name": "@tscircuit/props",
"version": "0.0.153",
"description": "Props for tscircuit builtin component types",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsup lib/index.ts --format esm --dts --sourcemap",
"check-circular-deps": "madge --circular --extensions ts ./lib",
"format": "biome format . --write",
"format:check": "biome format .",
"generate:manual-edits-docs": "tsx scripts/generate-manual-edits-docs.ts",
"generate:component-types": "tsx scripts/generate-component-types.ts"
},
"keywords": [],
"files": [
"dist",
"lib"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@tscircuit/layout": "^0.0.11",
"@types/bun": "^1.1.8",
"@types/node": "^20.12.11",
"@types/react": "^18.3.2",
"ava": "^6.1.3",
"circuit-json": "^0.0.106",
"expect-type": "^0.20.0",
"glob": "^11.0.0",
"madge": "^8.0.0",
"react": "^18.3.1",
"ts-expect": "^1.3.0",
"tsup": "^8.0.2",
"tsx": "^4.10.2",
"typescript": "^5.4.5",
"zod": "^3.23.8"
},
"peerDependencies": {
"@tscircuit/layout": "*",
"circuit-json": "*",
"react": "*",
"zod": "*"
}
}