-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.3 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
{
"name": "@7nohe/laravel-zodgen",
"version": "0.2.2",
"description": "The library lets you generate Zod schemas from Laravel FormRequests.",
"type": "module",
"bin": {
"laravel-zodgen": "dist/cli.js"
},
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts src/cli.ts --format esm,cjs --dts --clean",
"prepublishOnly": "pnpm run build",
"release": "npx git-ensure -a && npx bumpp --commit --tag --push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/7nohe/laravel-zodgen.git"
},
"homepage": "https://github.com/7nohe/laravel-zodgen",
"bugs": "https://github.com/7nohe/laravel-zodgen/issues",
"files": [
"dist"
],
"keywords": [
"zod",
"laravel",
"typescript",
"validation",
"zodgen"
],
"author": "Daiki Urata (@7nohe)",
"license": "MIT",
"dependencies": {
"commander": "^12.0.0",
"glob": "^10.3.12",
"php-parser": "^3.1.5",
"typescript": "^5.4.5",
"zod": "^3.23.6"
},
"devDependencies": {
"@types/node": "^20.12.8",
"tsup": "^8.0.2"
},
"packageManager": "pnpm@9.10.0"
}