forked from allgpt-co/QuickVoice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 2.02 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
53
54
55
56
57
58
59
60
{
"name": "QuickVoice",
"description": "Open-source, self-hostable Retell alternative for AI phone agents.",
"private": true,
"license": "AGPL-3.0-only",
"homepage": "https://quickvoice.co",
"repository": {
"type": "git",
"url": "git+https://github.com/allgpt-co/QuickVoice.git"
},
"scripts": {
"build": "turbo run build",
"dev": "task up:dev",
"dev:turbo": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{js,mjs,json,md,ts,tsx}\"",
"check-types": "turbo run check-types",
"test": "node --test tests/*.test.mjs && node --test apps/console/tests/*.test.mjs && pnpm --filter server test",
"test:dev-orchestration": "node --test tests/dev-orchestration.test.mjs",
"check:tasks": "node scripts/verify-turbo-tasks.mjs",
"check:configs": "pnpm --filter @repo/eslint-config lint && pnpm --filter @repo/typescript-config lint",
"ci:python": "cd apps/ai && if [ -x .venv/bin/python ]; then .venv/bin/python -m pytest tests; else python3 -m pytest tests; fi",
"ci:docker": "scripts/ci-docker-build.sh",
"ci:local": "pnpm check:tasks && pnpm check:configs && pnpm lint && pnpm check-types && pnpm build && pnpm test && pnpm ci:python && pnpm ci:docker",
"audit:deps": "node scripts/security-audit.mjs"
},
"devDependencies": {
"prettier": "^3.7.4",
"turbo": "^2.8.20",
"typescript": "5.9.2"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18"
},
"dependencies": {
"better-auth": "^1.6.19"
},
"pnpm": {
"overrides": {
"@grpc/grpc-js": "1.14.4",
"axios": "1.18.0",
"fast-uri": "3.1.2",
"flatted": "3.4.2",
"form-data": "4.0.6",
"glob": "10.5.0",
"hono": "4.12.26",
"minimatch@3": "3.1.4",
"minimatch@9": "9.0.7",
"picomatch@2": "2.3.2",
"picomatch@4": "4.0.4",
"protobufjs": "7.6.1",
"tar": "7.5.11",
"brace-expansion@1": "1.1.16",
"brace-expansion@5": "5.0.7",
"js-yaml@3": "3.15.0",
"js-yaml@4": "4.3.0"
}
}
}