-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.34 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
{
"name": "@7nohe/vite-plugin-openapi-typescript-codegen",
"version": "0.1.2",
"description": "OpenAPI Typescript Codegen for Vite",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/7nohe/vite-plugin-openapi-typescript-codegen"
},
"homepage": "https://github.com/7nohe/vite-plugin-openapi-typescript-codegen",
"bugs": "https://github.com/7nohe/vite-plugin-openapi-typescript-codegen/issues",
"files": [
"dist"
],
"scripts": {
"dev": "pnpm run build -- --watch",
"build": "tsup src/index.ts --dts --format cjs,esm",
"prepublishOnly": "pnpm run build",
"release": "npx git-ensure -a && npx bumpp --commit --tag --push",
"lint": "eslint src/**/*.ts",
"preview": "tsup src/index.ts --dts --format cjs,esm && pnpm --filter @7nohe/example run dev"
},
"keywords": [
"openapi",
"typescript",
"vite",
"node",
"yaml",
"json",
"swagger"
],
"author": "7nohe",
"license": "MIT",
"peerDependencies": {
"vite": "3.x"
},
"devDependencies": {
"@antfu/eslint-config": "^0.26.3",
"@types/node": "^18.7.15",
"chokidar": "^3.5.3",
"eslint": "^8.23.0",
"openapi-typescript-codegen": "^0.23.0",
"tsup": "^6.2.3",
"typescript": "^4.8.2",
"vite": "^3.1.0"
}
}