-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.57 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
{
"name": "apifox-ts-gen",
"version": "0.0.22",
"description": "从 Apifox OpenAPI 规范生成 TypeScript 类型定义",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"bin": {
"apifox-ts-gen": "./dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "ts-node src/cli.ts --no-interactive",
"watch": "tsup --watch",
"prepublishOnly": "pnpm run build",
"postversion": "git push && git push --tags"
},
"keywords": [
"apifox",
"typescript",
"openapi",
"codegen",
"types"
],
"author": "Apifox",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/snoopy1412/apifox-ts-gen.git"
},
"bugs": {
"url": "https://github.com/snoopy1412/apifox-ts-gen/issues"
},
"homepage": "https://github.com/snoopy1412/apifox-ts-gen#readme",
"dependencies": {
"@alicloud/openapi-client": "^0.4.12",
"@alicloud/tea-util": "^1.4.9",
"chalk": "4",
"commander": "^11.1.0",
"cosmiconfig": "^9.0.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/inquirer": "^8.2.3",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.2",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"peerDependencies": {
"axios": "^1.7.9",
"inquirer": "^8.2.4"
}
}