-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.01 KB
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
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@openapi-qraft/cli",
"version": "2.15.0-beta.10",
"license": "MIT",
"description": "CLI for generating typed TanStack Query React Hooks and services from OpenAPI Document, improving type safety in React apps",
"scripts": {
"build": "tsc --project tsconfig.build.json",
"dev": "yarn build --watch --noEmitOnError false",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"lint": "eslint --max-warnings 0",
"clean": "rimraf dist/"
},
"type": "module",
"bin": {
"openapi-qraft": "./bin.mjs"
},
"dependencies": {
"@openapi-qraft/openapi-typescript-plugin": "workspace:*",
"@openapi-qraft/plugin": "workspace:*",
"@openapi-qraft/tanstack-query-react-plugin": "workspace:*",
"@qraft/cli-utils": "workspace:*",
"@qraft/plugin": "workspace:*",
"ansi-colors": "^4.1.3",
"commander": "^14.0.3"
},
"devDependencies": {
"@openapi-qraft/eslint-config": "workspace:*",
"eslint": "^10.2.0",
"rimraf": "^6.1.3",
"typescript": "^5.9.3",
"vitest": "^4.1.4"
},
"files": [
"dist",
"src",
"!dist/**/*.test.*",
"!dist/**/*.spec.*",
"!src/**/*.test.*",
"!src/**/*.spec.*"
],
"module": "dist/bin.js",
"types": "dist/bin.d.ts",
"exports": {
"./package.json": "./package.json",
"./*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.js"
}
},
"typesVersions": {
"*": {
"*": [
"dist/*"
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenAPI-Qraft/openapi-qraft.git",
"directory": "packages/openapi-cli"
},
"bugs": {
"url": "https://github.com/OpenAPI-Qraft/openapi-qraft/issues"
},
"homepage": "https://openapi-qraft.github.io/openapi-qraft/",
"keywords": [
"openapi",
"swagger",
"rest",
"api",
"oapi_3",
"oapi_3_1",
"typescript",
"ts",
"dts",
"codegen",
"generation",
"fetch",
"react",
"hooks",
"TanStack Query"
],
"publishConfig": {
"access": "public"
}
}