forked from 7nohe/openapi-react-query-codegen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.66 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
{
"name": "@7nohe/openapi-react-query-codegen",
"version": "1.4.1",
"description": "OpenAPI React Query Codegen",
"bin": {
"openapi-rq": "dist/cli.mjs"
},
"type": "module",
"workspaces": ["examples/*"],
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.json",
"lint": "biome check .",
"lint:fix": "biome check --apply .",
"preview": "npm run build && npm -C examples/react-app run generate:api",
"prepublishOnly": "npm run build",
"release": "npx git-ensure -a && npx bumpp --commit --tag --push",
"test": "vitest --coverage.enabled true",
"snapshot": "vitest --update"
},
"repository": {
"type": "git",
"url": "git+https://github.com/7nohe/openapi-react-query-codegen.git"
},
"homepage": "https://github.com/7nohe/openapi-react-query-codegen",
"bugs": "https://github.com/7nohe/openapi-react-query-codegen/issues",
"files": ["dist"],
"keywords": [
"codegen",
"react-query",
"react",
"openapi",
"swagger",
"typescript",
"openapi-typescript-codegen",
"@hey-api/openapi-ts"
],
"author": "Daiki Urata (@7nohe)",
"license": "MIT",
"dependencies": {
"@hey-api/openapi-ts": "0.52.0"
},
"devDependencies": {
"@biomejs/biome": "^1.7.2",
"@types/node": "^20.10.6",
"@vitest/coverage-v8": "^1.5.0",
"commander": "^12.0.0",
"glob": "^10.3.10",
"lefthook": "^1.6.10",
"rimraf": "^5.0.5",
"ts-morph": "^23.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"vitest": "^1.5.0"
},
"peerDependencies": {
"commander": "12.x",
"glob": "10.x",
"ts-morph": "22.x",
"typescript": "5.x"
},
"engines": {
"node": ">=14"
}
}