-
Notifications
You must be signed in to change notification settings - Fork 560
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.65 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "QuickVoice",
"description": "Open-source, self-hostable Retell alternative for AI phone agents.",
"private": true,
"license": "MIT",
"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": "scripts/ci-python.sh",
"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",
"claims:audit": "node scripts/audit-public-claims.mjs",
"claims:audit:launch": "node scripts/audit-public-claims.mjs --target apps/web/src/app/open-source --target apps/web/src/components/open-source"
},
"devDependencies": {
"prettier": "^3.7.4",
"turbo": "^2.10.7",
"typescript": "5.9.2"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": "^20.19 || ^22.13 || >=24"
},
"dependencies": {
"better-auth": "^1.6.22"
},
"pnpm": {
"overrides": {
"@grpc/grpc-js": "1.14.4",
"@babel/core@7": "7.29.6",
"@hono/node-server": "2.0.12",
"@opentelemetry/auto-instrumentations-node": "0.78.0",
"@opentelemetry/core": "2.10.0",
"@opentelemetry/propagator-jaeger": "2.9.0",
"axios": "1.18.0",
"body-parser": "2.3.0",
"brace-expansion": "5.0.9",
"esbuild": "0.28.1",
"fast-uri": "4.1.2",
"flatted": "3.4.2",
"form-data": "4.0.6",
"glob": "10.5.0",
"hono": "4.13.0",
"immutable": "5.1.9",
"ip-address": "10.3.1",
"js-yaml@3": "3.15.0",
"js-yaml@4": "4.3.0",
"minimatch@3": "10.2.5",
"minimatch@9": "10.2.5",
"morgan": "1.11.0",
"picomatch@2": "2.3.2",
"picomatch@4": "4.0.4",
"postcss": "8.5.23",
"protobufjs": "7.6.5",
"qs": "6.15.3",
"sharp": "0.35.3",
"tar": "7.5.11",
"valibot": "1.4.2"
},
"patchedDependencies": {
"minimatch@10.2.5": "patches/minimatch@10.2.5.patch"
}
}
}