-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
67 lines (67 loc) · 1.43 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "shadcn-zod-form",
"version": "0.0.4",
"description": "Generate shadcn/ui forms from zod schemas",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"type": "module",
"author": {
"name": "ilyichv",
"url": "https://x.com/ilyichv_"
},
"repository": {
"type": "git",
"url": "https://github.com/ilyichv/shadcn-zod-form.git"
},
"keywords": [
"shadcn",
"zod",
"form",
"ui",
"cli",
"react"
],
"exports": "./dist/index.js",
"bin": "./dist/index.js",
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"typecheck": "tsc --noEmit",
"lint": "pnpm biome check src"
},
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.8",
"@types/fs-extra": "^11.0.4",
"@types/lodash.camelcase": "^4.3.9",
"@types/lodash.kebabcase": "^4.1.9",
"@types/lodash.startcase": "^4.4.9",
"@types/lodash.template": "^4.5.3",
"@types/node": "^22.5.4",
"@types/prompts": "^2.4.9",
"tsup": "^8.2.4",
"type-fest": "^4.26.1",
"typescript": "^5.5.4"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"cosmiconfig": "^9.0.0",
"fs-extra": "^11.2.0",
"lodash.camelcase": "^4.3.0",
"lodash.kebabcase": "^4.1.1",
"lodash.startcase": "^4.4.0",
"lodash.template": "^4.5.0",
"ora": "^8.1.0",
"prompts": "^2.4.2",
"ts-morph": "^23.0.0",
"tsconfig-paths": "^4.2.0",
"zod": "^3.23.8"
}
}