forked from openapi-ts/openapi-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.9 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
{
"name": "openapi-typescript",
"description": "Generate TypeScript types from Swagger OpenAPI specs",
"version": "6.0.3",
"author": "[email protected]",
"license": "MIT",
"bin": {
"openapi-typescript": "bin/cli.js"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"type": "module",
"files": [
"bin",
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/drwpow/openapi-typescript"
},
"keywords": [
"swagger",
"typescript",
"ts",
"dts",
"openapi",
"codegen",
"generation",
"openapi 3",
"node"
],
"bugs": {
"url": "https://github.com/drwpow/openapi-typescript/issues"
},
"homepage": "https://github.com/drwpow/openapi-typescript#readme",
"scripts": {
"build": "del dist && tsc -p tsconfig.build.json",
"dev": "tsc -p tsconfig.build.json --watch",
"download:schemas": "vite-node ./scripts/download-schemas.ts",
"format": "npm run prettier -w .",
"lint": "eslint .",
"prepare": "npm run build",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"update:examples": "vite-node ./scripts/update-examples.ts",
"version": "npm run build"
},
"dependencies": {
"ansi-colors": "^4.1.3",
"fast-glob": "^3.2.12",
"js-yaml": "^4.1.0",
"supports-color": "^9.2.3",
"undici": "^5.12.0",
"yargs-parser": "^21.1.1"
},
"devDependencies": {
"@types/degit": "^2.8.3",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"@vitest/coverage-c8": "^0.25.2",
"degit": "^2.8.4",
"del-cli": "^5.0.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"execa": "^6.1.0",
"prettier": "^2.7.1",
"typescript": "^4.9.3",
"vite-node": "^0.25.2",
"vitest": "^0.25.2"
}
}