-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.98 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
{
"name": "openapi-axios",
"type": "commonjs",
"version": "0.31.0",
"description": "OpenAPI(2.0/3.0/3.1) Schema → Type-safe Axios",
"author": "云淡然 <[email protected]> (https://ydr.me)",
"license": "MIT",
"homepage": "https://github.com/FrontEndDev-org/openapi-axios",
"repository": "https://github.com/FrontEndDev-org/openapi-axios",
"keywords": [
"cloudcome",
"ydr.me",
"OpenAPI",
"swagger",
"TypeScript",
"OAS",
"axios"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"openapi-axios": "bin/index.cjs"
},
"files": [
"dist"
],
"engines": {
"node": ">=14.21"
},
"scripts": {
"prepare": "lefthook install",
"build": "NODE_ENV=production vite build",
"lint:js": "eslint",
"lint:js:fix": "eslint --fix",
"lint:type": " tsc --noEmit",
"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"
},
"maintainers": [
"阿森 <[email protected]>"
],
"dependencies": {
"@redocly/openapi-core": "^1.27.2",
"chalk": "^4.1.2",
"commander": "^13.1.0",
"prettier": "^3.4.2",
"strict-event-emitter": "^0.5.1",
"try-flatten": "^1.3.2"
},
"devDependencies": {
"@antfu/eslint-config": "^4.1.0",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/types": "^19.5.0",
"@types/node": "20",
"@vitest/coverage-v8": "^3.0.4",
"eslint": "^9.19.0",
"lefthook": "^1.10.10",
"taze": "^18.3.0",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"vite-plugin-dts": "^4.5.0",
"vite-plugin-externalize-deps": "^0.9.0",
"vitest": "^3.0.4"
}
}