-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.34 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
{
"name": "model-runtime-api",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsc -b",
"check": "pnpm format:check && pnpm typecheck && pnpm test && pnpm check:sdks && pnpm build && pnpm check:schema && pnpm check:docs && pnpm scan:public",
"check:docs": "node scripts/check-docs.mjs",
"check:schema": "node scripts/generate-schema.mjs --check",
"check:go": "cd sdk/go && go test ./...",
"check:python": "PYTHONPATH=sdk/python/src python3 -m unittest discover -s sdk/python/tests -v",
"check:sdks": "pnpm check:go && pnpm check:python",
"dev": "pnpm --filter @model-runtime/server dev",
"format": "biome format --write .",
"format:check": "biome format .",
"generate:schema": "pnpm --filter @model-runtime/protocol build && node scripts/generate-schema.mjs",
"scan:public": "node scripts/scan-public.mjs && pnpm scan:secrets",
"scan:secrets": "secretlint '**/*'",
"test": "pnpm build && vitest run",
"typecheck": "tsc -b --pretty false"
},
"devDependencies": {
"@biomejs/biome": "2.5.11",
"@types/node": "24.13.3",
"@secretlint/secretlint-rule-preset-recommend": "13.0.5",
"secretlint": "13.0.5",
"typescript": "5.9.3",
"vitest": "3.2.7",
"yaml": "2.9.0"
}
}