-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.8 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
{
"name": "voice-agent-kit",
"version": "0.1.0",
"private": true,
"description": "Production voice AI agent transport layer with real-time speech processing, telephony integration, and MCP server connectivity",
"author": "Rick Somers <rick@reaatech.com> (https://reaatech.com)",
"license": "MIT",
"type": "module",
"scripts": {
"build": "pnpm install && pnpm -r build",
"dev": "pnpm -r --parallel dev",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"typecheck": "tsc --noEmit -p tsconfig.typecheck.json",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:dist": "node scripts/smoke-dist.mjs",
"lint:publish": "pnpm -r --filter \"./packages/*\" exec publint --strict",
"lint:types": "pnpm -r --filter \"./packages/*\" --filter \"!@reaatech/create-voice-agent\" exec attw --pack",
"clean": "pnpm -r clean && rm -rf node_modules",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && changeset publish"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.3",
"@biomejs/biome": "^2.4.16",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.31.0",
"@types/node": "^25.6.2",
"@vitest/coverage-v8": "^1.3.0",
"publint": "^0.3.5",
"typescript": "^6.0.3",
"vitest": "^1.3.0"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=10.0.0"
},
"packageManager": "pnpm@10.22.0",
"repository": {
"type": "git",
"url": "git+https://github.com/reaatech/voice-agent-kit.git"
},
"bugs": {
"url": "https://github.com/reaatech/voice-agent-kit/issues"
},
"homepage": "https://github.com/reaatech/voice-agent-kit#readme"
}