-
-
Notifications
You must be signed in to change notification settings - Fork 528
/
Copy pathpackage.json
77 lines (77 loc) · 1.93 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": "openapi-typescript",
"description": "Generate TypeScript types from Swagger OpenAPI specs",
"version": "6.2.7",
"author": {
"name": "Drew Powers",
"email": "[email protected]"
},
"license": "MIT",
"bin": {
"openapi-typescript": "bin/cli.js"
},
"type": "module",
"main": "./dist/index.js",
"files": [
"bin",
"dist",
"src"
],
"homepage": "https://openapi-ts.pages.dev",
"repository": {
"type": "git",
"url": "https://github.com/drwpow/openapi-typescript",
"directory": "packages/openapi-typescript"
},
"keywords": [
"swagger",
"typescript",
"ts",
"dts",
"openapi",
"codegen",
"generation",
"openapi 3",
"node"
],
"bugs": {
"url": "https://github.com/drwpow/openapi-typescript/issues"
},
"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": "pnpm run prettier -w .",
"lint": "run-p -s lint:*",
"lint:js": "eslint \"src/**/*.{js,ts}\"",
"lint:prettier": "prettier --check \"src/**/*\"",
"prepare": "pnpm run build",
"test": "run-p -s test:*",
"test:js": "vitest run",
"test:ts": "tsc --noEmit",
"update:examples": "vite-node ./scripts/update-examples.ts",
"prepublish": "pnpm run build",
"version": "pnpm run build"
},
"dependencies": {
"ansi-colors": "^4.1.3",
"fast-glob": "^3.2.12",
"js-yaml": "^4.1.0",
"supports-color": "^9.3.1",
"undici": "^5.22.1",
"yargs-parser": "^21.1.1"
},
"devDependencies": {
"@types/degit": "^2.8.3",
"@types/js-yaml": "^4.0.5",
"@types/node": "^20.2.3",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"degit": "^2.8.4",
"del-cli": "^5.0.0",
"execa": "^6.1.0",
"vite": "^4.3.8",
"vite-node": "^0.31.1",
"vitest": "^0.31.1"
}
}