-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.25 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.25 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
{
"name": "agent-starter-node",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "vite build",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"lint": "eslint \"**/*.{ts,js}\"",
"lint:fix": "eslint --fix \"**/*.{ts,js}\"",
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,js,json,md}\"",
"test": "vitest --run",
"test:watch": "vitest",
"dev": "pnpm run build && node dist/main.js dev",
"download-files": "pnpm run build && node dist/main.js download-files",
"start": "node dist/main.js start"
},
"engines": {
"node": ">=22.0.0",
"pnpm": ">=10.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^22.19.17",
"eslint": "^9.39.4",
"globals": "^16.5.0",
"jiti": "^2.6.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.1",
"vite": "^7.3.2",
"vitest": "^4.1.4"
},
"dependencies": {
"@livekit/agents": "^1.2.4",
"@livekit/agents-plugin-livekit": "^1.2.4",
"@livekit/agents-plugin-silero": "^1.2.4",
"@livekit/plugins-ai-coustics": "^0.2.10",
"dotenv": "^17.4.1",
"zod": "^3.25.76"
}
}