-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.81 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.81 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
{
"name": "sdking",
"version": "0.1.0",
"description": "SDKing - Generate TypeScript SDKs from OpenAPI specs. Validate API inputs and outputs using Zod. Own your SDKs!",
"bin": "dist/cli/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/cli/index.js",
"test": "jest",
"dev": "tsc && node dist/cli/index.js",
"lint": "eslint src --ext .ts",
"generate:petstore": "node dist/cli/index.js -i https://petstore3.swagger.io/api/v3/openapi.yaml -o ./examples/petstore-sdk-yaml",
"generate:petstore:json": "node dist/cli/index.js -i https://petstore3.swagger.io/api/v3/openapi.json -o ./examples/petstore-sdk-json",
"generate:petstore:local": "node dist/cli/index.js -i ./examples/petstore-sdk-local/local.yaml -o ./examples/petstore-sdk-local",
"generate:x": "node dist/cli/index.js -i ./examples/x/openapi.yaml -o ./examples/x-sdk",
"generate:y": "node dist/cli/index.js -i ./examples/y/openapi.json -o ./examples/y-sdk"
},
"keywords": [
"openapi",
"sdk",
"generator",
"typescript",
"zod"
],
"author": {
"name": "Debkanchan Samadder",
"twitter": "debkanchans",
"url": "https://debkanchan.is-a.dev"
},
"license": "MIT",
"dependencies": {
"@commander-js/extra-typings": "^13.1.0",
"commander": "^11.1.0",
"js-yaml": "^4.1.0",
"node-fetch": "^3.3.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@tsconfig/node-lts": "^22.0.1",
"@tsconfig/strictest": "^2.0.5",
"@types/jest": "^29.5.10",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"type": "module"
}