-
-
Notifications
You must be signed in to change notification settings - Fork 639
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.17 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.17 KB
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
78
79
80
81
82
{
"name": "openapi-typescript",
"description": "Convert OpenAPI 3.0 & 3.1 schemas to TypeScript",
"version": "7.13.0",
"author": {
"name": "Drew Powers",
"email": "drew@pow.rs"
},
"license": "MIT",
"bin": {
"openapi-typescript": "bin/cli.js"
},
"type": "module",
"main": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
},
"./*.js": "./*.mjs",
"./*": "./*"
},
"homepage": "https://openapi-ts.dev",
"repository": {
"type": "git",
"url": "https://github.com/openapi-ts/openapi-typescript",
"directory": "packages/openapi-typescript"
},
"keywords": [
"swagger",
"typescript",
"ts",
"dts",
"openapi",
"codegen",
"generation",
"openapi 3",
"node"
],
"bugs": {
"url": "https://github.com/openapi-ts/openapi-typescript/issues"
},
"scripts": {
"build": "unbuild",
"dev": "tsc -p tsconfig.build.json --watch",
"download:schemas": "vite-node ./scripts/download-schemas.ts",
"format": "biome format . --write",
"lint": "pnpm run lint:js && pnpm run lint:ts",
"lint:js": "biome check .",
"lint:ts": "tsc --noEmit",
"prepack": "pnpm run build",
"test": "pnpm run test:js && pnpm run test:examples && pnpm run test:exports",
"test:js": "vitest run",
"test:exports": "pnpm run build && attw --pack .",
"test:examples": "tsc -p tsconfig.examples.json --noEmit",
"update:examples": "pnpm run build && pnpm run download:schemas && vite-node ./scripts/update-examples.ts",
"prepublish": "pnpm run build",
"version": "pnpm run build"
},
"peerDependencies": {
"typescript": "^5.x || ^6.0.0"
},
"dependencies": {
"@redocly/openapi-core": "^1.34.6",
"ansi-colors": "^4.1.3",
"change-case": "^5.4.4",
"parse-json": "^8.3.0",
"scule": "^1.3.0",
"supports-color": "^10.2.2",
"yargs-parser": "^21.1.1"
},
"devDependencies": {
"@types/degit": "2.8.6",
"@types/js-yaml": "4.0.9",
"degit": "2.8.4",
"execa": "catalog:",
"strip-ansi": "7.2.0",
"typescript": "catalog:",
"vite-node": "5.3.0"
}
}