-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.24 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
{
"name": "@tiny-codes/swagger-api-hub",
"version": "1.2.4",
"description": "Generate front-end access code for swagger backend services in one click",
"keywords": [
"OpenApi",
"swagger",
"api",
"codegen"
],
"homepage": "https://github.com/shijistar/swagger-api-hub#readme",
"bugs": {
"url": "https://github.com/shijistar/swagger-api-hub/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shijistar/swagger-api-hub.git"
},
"license": "MIT",
"author": "李凤宝 <[email protected]>",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"swagger-api-hub": "bin/swagger-api-hub.js"
},
"files": [
"bin",
"lib",
"templates",
"cover.webp",
"CHANGELOG.md"
],
"scripts": {
"build": "father build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"prepare": "husky",
"prepublishOnly": "npm run build"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --fix",
"*.{js,jsx,ts,tsx,md}": "prettier --write"
},
"dependencies": {
"@inquirer/prompts": "^7.2.3",
"axios": "^1.7.9",
"colors": "^1.4.0",
"commander": "^13.0.0",
"cross-spawn": "^7.0.6",
"lodash": "^4.17.21",
"prettier": "^3.4.2",
"signale": "^1.4.0",
"swagger-typescript-api": "^13.0.23",
"tsx": "^4.19.2"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@trivago/prettier-plugin-sort-imports": "5.2.1",
"@types/cross-spawn": "^6.0.6",
"@types/lodash": "^4.17.14",
"@types/node": "^20.17.13",
"@types/signale": "^1.4.7",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"commitlint": "^19.6.1",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.2",
"father": "^4.5.1",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"prettier-plugin-jsdoc": "^1.3.2",
"prettier-plugin-packagejson": "^2.5.7"
},
"packageManager": "[email protected]"
}