-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.53 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
77
78
79
80
81
82
83
{
"name": "openapi-axios",
"version": "0.25.0",
"description": "OpenAPI(2.0/3.0/3.1) Schema → Type-safe Axios",
"scripts": {
"prepare": "husky install",
"build": "NODE_ENV=production vite build",
"lint:js": "eslint --ext=.cjs,.mjs,.ts,.tsx src test",
"lint:js:fix": "eslint --ext=.cjs,.mjs,.ts,.tsx src test --fix",
"lint:type": " tsc --project tsconfig.json",
"lint": "npm run lint:js && npm run lint:type",
"lint:fix": "npm run lint:js:fix && npm run lint:type",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"engines": {
"node": ">=14.21"
},
"sideEffects": false,
"type": "commonjs",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"bin": {
"openapi-axios": "bin/index.cjs"
},
"keywords": [
"cloudcome",
"ydr.me",
"OpenAPI",
"swagger",
"TypeScript",
"OAS",
"axios"
],
"author": "云淡然 <hi@ydr.me> (https://ydr.me)",
"maintainers": [
"阿森 <zhenxs2018@foxmail.com>"
],
"homepage": "https://github.com/FrontEndDev-org/openapi-axios",
"repository": "https://github.com/FrontEndDev-org/openapi-axios",
"license": "MIT",
"dependencies": {
"@redocly/openapi-core": "^1.18.1",
"chalk": "^4.1.2",
"commander": "^12.1.0",
"prettier": "^3.3.2",
"strict-event-emitter": "^0.5.1",
"try-flatten": "^1.3.2"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"@commitlint/types": "^18.6.1",
"@types/node": "20",
"@types/prettier": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^8.0.3",
"lint-staged": "^15.2.7",
"typescript": "^5.5.3",
"vite": "^5.3.3",
"vite-plugin-dts": "^3.9.1",
"vite-plugin-externalize-deps": "^0.8.0",
"vitest": "^1.6.0"
}
}