-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 848 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "@methodfi/openapi",
"version": "1.0.0",
"private": true,
"description": "OpenAPI specification for the Method API",
"license": "Proprietary",
"scripts": {
"lint": "redocly lint openapi/openapi.yaml --config .redocly.yaml",
"bundle": "redocly bundle openapi/openapi.yaml --config .redocly.yaml -o latest/openapi.bundled.yaml && redocly bundle openapi/openapi.yaml --config .redocly.yaml -o latest/openapi.bundled.json",
"routes": "tsx scripts/generate-route-manifest.ts",
"sdk:smoke": "tsx scripts/sdk-smoke-test.ts",
"check": "pnpm lint && pnpm bundle && pnpm routes",
"validate": "pnpm check && pnpm sdk:smoke"
},
"devDependencies": {
"@redocly/cli": "^1.34.1",
"openapi-typescript": "^7.6.1",
"tsx": "^4.19.0",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=20"
}
}