-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.44 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
{
"name": "@call-e/calle-docs",
"version": "0.2.0",
"private": true,
"type": "module",
"description": "Open-source developer documentation for the CALL-E Developer API.",
"repository": {
"type": "git",
"url": "git+https://github.com/CALLE-AI/calle-docs.git"
},
"license": "MIT",
"packageManager": "pnpm@8.10.2",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"sync:openapi": "node scripts/sync-openapi.mjs",
"sync:regions": "node scripts/sync-regions.mjs",
"dev": "pnpm run sync:openapi && pnpm run sync:regions && zudoku dev",
"build": "pnpm run sync:openapi && pnpm run sync:regions && zudoku build && node scripts/augment-llms.mjs",
"verify:dist": "node scripts/verify-dist.mjs",
"validate": "pnpm run typecheck && pnpm run build && pnpm run verify:dist && pnpm run test:deploy && pnpm run test:transcripts && pnpm run test",
"preview": "zudoku preview",
"test": "playwright test",
"test:transcripts": "python3 examples/read_transcript.py && node --experimental-strip-types examples/read-transcript.ts",
"test:deploy": "python3 -m unittest scripts/test_deploy_docs_to_oss.py",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"react": "^19.2.6",
"react-dom": "^19.2.6"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"typescript": "^5.9.0",
"zudoku": "0.82.3"
}
}