-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.47 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
{
"version": "0.5.0",
"type": "module",
"name": "universal-swagger-exporter",
"description": "Universal Swagger export. Configurable export from Swagger json file.",
"main": "index.ts",
"files": [
"dist"
],
"bin": "dist/index.js",
"scripts": {
"build": "ncc build src/index.ts",
"watch": "ncc build src/index.ts -w",
"compile": "npm run build && npm run start && npm run post-fix",
"help": "ncc",
"start": "node dist/index.js --in data/api.json --out out/data",
"post-fix": "eslint out --fix"
},
"keywords": [
"swagger",
"swagger export",
"swagger auto export",
"export",
"typescript",
"exporter",
"swagger",
"swagger-export",
"universal-swagger-exporter"
],
"author": "framemuse",
"license": "MIT",
"dependencies": {
"fs": "^0.0.1-security",
"openapi-to-md": "^1.0.17",
"widdershins": "^4.0.1",
"yargs": "^17.5.1",
"zod": "^3.20.2"
},
"devDependencies": {
"@types/jest": "^27.5.2",
"@types/lodash": "^4.14.189",
"@types/node": "^17.0.30",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@vercel/ncc": "^0.33.4",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.3.1",
"lodash": "^4.17.21",
"typescript": "^4.6.4"
},
"bugs": {
"url": "https://github.com/FrameMuse/universal-swagger-exporter/issues"
},
"homepage": "https://github.com/FrameMuse/universal-swagger-exporter#readme"
}