-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.34 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.34 KB
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
47
48
49
50
51
{
"name": "@tscircuit/props",
"version": "0.0.499",
"description": "Props for tscircuit builtin component types",
"main": "dist/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/tscircuit/props.git"
},
"scripts": {
"build": "tsup lib/index.ts --format esm --dts --sourcemap",
"check-circular-deps": "madge --circular --extensions ts ./lib",
"typecheck": "bunx tsc --noEmit",
"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",
"generate:readme-docs": "tsx scripts/generate-readme-docs.ts"
},
"keywords": [],
"files": [
"dist",
"lib"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.2.12",
"@types/node": "^20.12.11",
"@types/react": "^18.3.2",
"ava": "^6.1.3",
"circuit-json": "^0.0.377",
"expect-type": "^1.3.0",
"glob": "^11.0.0",
"madge": "^8.0.0",
"prettier": "^3.3.3",
"react": "^18.3.1",
"ts-expect": "^1.3.0",
"tsup": "^8.0.2",
"tsx": "^4.10.2",
"typescript": "^5.4.5",
"zod": "3"
},
"peerDependencies": {
"circuit-json": "*",
"react": "*",
"zod": "*"
}
}