-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
41 lines (41 loc) · 1.23 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
{
"name": "@7nohe/laravel-typegen",
"version": "0.6.1",
"description": "The library lets you generate TypeScript types from your Laravel code.",
"bin": {
"laravel-typegen": "dist/src/cli.js"
},
"exports": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json && cp -R templates ./dist",
"lint": "biome check .",
"lint:fix": "biome check --apply .",
"prepublishOnly": "pnpm run build",
"release": "npx git-ensure -a && npx bumpp --commit --tag --push",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/7nohe/laravel-typegen.git"
},
"homepage": "https://github.com/7nohe/laravel-typegen",
"bugs": "https://github.com/7nohe/laravel-typegen/issues",
"files": ["dist"],
"keywords": ["laravel", "typegen", "typescript"],
"author": "Daiki Urata (@7nohe)",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@types/node": "^20.11.16",
"lefthook": "^1.6.12"
},
"dependencies": {
"@7nohe/laravel-zodgen": "^0.1.6",
"commander": "^12.0.0",
"consola": "^3.2.3",
"glob": "^10.3.12",
"php-parser": "^3.1.5",
"typescript": "^5.4.5"
}
}