-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
77 lines (77 loc) · 1.91 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
{
"name": "@clean-js/api-gen",
"version": "1.0.3",
"description": "",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"api-gen": "./dist/index.js"
},
"scripts": {
"prepublishOnly": "npm run build && np --no-cleanup --yolo --no-publish --any-branch",
"dev": "rollup -c -w",
"build": "rollup --config rollup.config.ts --configPlugin typescript",
"start": "npm run build && node ./dist/index.js",
"test": "jest"
},
"keywords": [
"Swagger",
"Openapi",
"Yapi",
"Code Generator",
"axios",
"umi-request"
],
"authors": [
],
"license": "MIT",
"files": [
"dist",
"template"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.1.0",
"@types/jest": "^27",
"jest": "^27",
"rollup-plugin-dts": "^5.0.0",
"typescript": "^4.8.4"
},
"dependencies": {
"@anatine/zod-mock": "^3.11.0",
"@apidevtools/json-schema-ref-parser": "^9.0.9",
"@faker-js/faker": "^7.6.0",
"@lujs/di": "^1.1.8",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-json": "^5.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^9.0.2",
"@types/fs-extra": "^9.0.13",
"@types/json-schema": "^7.0.11",
"@types/lodash": "^4.14.189",
"@types/mkdirp": "^1.0.2",
"@types/node-fetch": "^2.6.2",
"axios": "^1.1.3",
"chalk": "^4.1.2",
"change-case": "^4.1.2",
"dayjs": "^1.11.6",
"fs-extra": "^10.1.0",
"jiti": "^1.16.0",
"json-schema-to-typescript": "^11.0.2",
"json-schema-to-zod": "^0.6.3",
"lodash": "^4.17.21",
"mkdirp": "^1.0.4",
"node-fetch": "^2.6.6",
"np": "^7.6.2",
"openapi-types": "^12.0.2",
"ora": "^5.1.2",
"rollup": "^3.2.5",
"ts-morph": "^17.0.1",
"umi-request": "^1.4.0",
"worker-webserver": "^0.1.2",
"zod": "^3.21.4"
}
}