-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
76 lines (76 loc) · 2.11 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
68
69
70
71
72
73
74
75
76
{
"name": "@7nohe/openapi-react-query-codegen",
"version": "2.0.0-beta.3",
"description": "OpenAPI React Query Codegen",
"bin": {
"openapi-rq": "dist/cli.mjs"
},
"private": false,
"type": "module",
"workspaces": ["examples/*"],
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.json",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"preview:react": "npm run build && npm -C examples/react-app run generate:api",
"preview:nextjs": "npm run build && npm -C examples/nextjs-app run generate:api",
"preview:tanstack-router": "npm run build && npm -C examples/tanstack-router-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"
},
"exports": [
{
"import": "./dist/generate.mjs",
"require": "./dist/generate.mjs",
"types": "./dist/generate.d.mts"
}
],
"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"
],
"license": "MIT",
"author": "Daiki Urata (@7nohe)",
"dependencies": {
"@hey-api/client-fetch": "0.4.0",
"@hey-api/openapi-ts": "0.53.8",
"cross-spawn": "^7.0.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@types/cross-spawn": "^6.0.6",
"@types/node": "^22.7.4",
"@vitest/coverage-v8": "^1.5.0",
"commander": "^12.0.0",
"lefthook": "^1.6.10",
"rimraf": "^5.0.5",
"ts-morph": "^23.0.0",
"typescript": "^5.5.4",
"vitest": "^1.5.0"
},
"peerDependencies": {
"commander": "12.x",
"ts-morph": "23.x",
"typescript": "5.x"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=14",
"pnpm": ">=9"
}
}