-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.72 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
{
"name": "vite-plugin-openapi-codegen",
"version": "5.0.2",
"description": "Vite plugin that generates typed API clients and route builders from OpenAPI specs",
"keywords": [
"api-client",
"codegen",
"openapi",
"openapi-typescript",
"route-builder",
"vite",
"vite-plugin",
"vite-plus"
],
"homepage": "https://github.com/GGGLHHH/vite-plugin-openapi-codegen#readme",
"bugs": {
"url": "https://github.com/GGGLHHH/vite-plugin-openapi-codegen/issues"
},
"license": "MIT",
"author": "ge Datou (https://github.com/GGGLHHH)",
"repository": {
"type": "git",
"url": "git+https://github.com/GGGLHHH/vite-plugin-openapi-codegen.git"
},
"bin": {
"vg": "./dist/cli.mjs"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"types": "./dist/index.d.mts",
"exports": {
".": "./dist/index.mjs",
"./cli": "./dist/cli.mjs",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vp pack",
"dev": "vp pack --watch",
"dev:examples": "node scripts/dev-examples.mjs",
"test": "vp test",
"check": "vp check",
"release": "bumpp --no-verify",
"prepublishOnly": "vp run build"
},
"dependencies": {
"openapi-typescript": "^7.13.0",
"typescript": ">=5.0.0",
"yaml": "^2.9.0"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@typescript/native-preview": "7.0.0-dev.20260328.1",
"bumpp": "^11.0.1",
"vite-plus": "^0.1.14"
},
"peerDependencies": {
"vite-plus": ">=0.1.0"
},
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
},
"packageManager": "npm@11.12.0"
}