Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
Latest commit
37 lines (37 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.36 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
{
"name": "beatapi-cli-workspace",
"version": "0.2.0",
"private": true,
"description": "Official TypeScript client and CLI for BeatAPI async and realtime AI video APIs.",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"contract:sync": "node scripts/contract.mjs --write",
"contract:check": "node scripts/contract.mjs --check",
"generate:types": "openapi-typescript contract/beatapi.openapi.yaml -o packages/client/src/types.generated.ts",
"check:generated": "node scripts/check-generated.mjs",
"build": "npm run generate:types && tsc -b",
"clean": "tsc -b --clean",
"typecheck": "tsc -b --pretty false",
"test": "tsx --test packages/*/test/*.test.ts test/*.test.mjs",
"lint": "tsc -b --pretty false",
"verify": "npm run contract:check && npm run check:generated && npm run clean && npm run typecheck && npm test && npm run build && npm run pack:check && npm run package:smoke",
"pack:check": "npm pack --dry-run --workspace beatapi-client && npm pack --dry-run --workspace beatapi",
"package:smoke": "node scripts/package-smoke.mjs"
},
"engines": {
"node": ">=20.19.0 <21 || >=22.12.0"
},
"devDependencies": {
"@types/node": "26.1.1",
"openapi-typescript": "7.13.0",
"tsx": "4.23.1",
"typescript": "5.9.3"
},
"overrides": {
"brace-expansion": "5.0.9"
},
"license": "MIT"
}