-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.78 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
{
"name": "@openapi-codegen/cli",
"version": "3.1.0",
"description": "OpenAPI Codegen cli",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"bin": {
"openapi-codegen": "lib/cli.js"
},
"repository": {
"url": "https://github.com/fabien0102/openapi-codegen",
"directory": "cli"
},
"homepage": "https://github.com/fabien0102/openapi-codegen/tree/main/cli#readme",
"bugs": {
"url": "https://github.com/fabien0102/openapi-codegen/issues"
},
"publishConfig": {
"access": "public"
},
"author": "Fabien Bernard",
"keywords": [
"openapi",
"codegen",
"plugin",
"typescript"
],
"license": "MIT",
"scripts": {
"watch": "tsup src/index.ts src/cli.ts --outDir lib --format esm --watch",
"prebuild": "pnpm --workspace-root tsc --emitDeclarationOnly --declaration -p cli/tsconfig.package.json",
"build": "tsup src/index.ts src/cli.ts --outDir lib --format esm",
"prepublishOnly": "pnpm build"
},
"files": [
"lib",
"README.md"
],
"dependencies": {
"@clack/prompts": "^0.9.1",
"@octokit/request": "^9.2.2",
"@swc/core": "^1.2.118",
"case": "^1.6.3",
"cli-highlight": "^2.1.11",
"clipanion": "^4.0.0-rc.4",
"fs-extra": "^10.0.0",
"got": "^12.0.0",
"got-fetch": "^5.1.1",
"js-yaml": "^4.1.0",
"openapi3-ts": "^4.4.0",
"prettier": "^3.2.5",
"slash": "^4.0.0",
"swagger2openapi": "^7.0.8",
"tslib": "^2.3.1",
"typanion": "^3.14.0",
"typescript": "5.7.3"
},
"devDependencies": {
"@swc-node/register": "^1.4.0",
"@types/fs-extra": "^9.0.13",
"@types/js-yaml": "^4.0.3",
"@types/nock": "^11.1.0",
"@types/prettier": "^3.0.0",
"@types/slash": "^3.0.0",
"nock": "^13.2.1",
"react": "^18.3.1",
"tsup": "^8.3.5"
}
}