-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 4.25 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 4.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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "groupscope",
"version": "1.1.0",
"description": "Self-hostable research group operations agent.",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=22.13.0"
},
"scripts": {
"dev": "mastra dev",
"build": "mastra build && tsx scripts/copy-mastra-prompt-assets.ts",
"start": "mastra start",
"web:dev": "next dev -p 9999",
"web:build": "next build",
"web:start": "next start -p 9999",
"typecheck": "tsc --noEmit --incremental false",
"precommit": "npm run typecheck",
"check:model-provider": "tsx scripts/check-model-provider.ts",
"check:gitbook": "tsx scripts/check-gitbook.ts",
"check:theme-meetings": "tsx scripts/check-theme-meetings.ts",
"check:theme-meeting-auth": "tsx scripts/check-theme-meeting-auth.ts",
"check:theme-meeting-ui": "npm run web:build && tsx scripts/check-theme-meeting-ui.ts",
"check:account-management": "tsx scripts/check-account-management.ts",
"check:memory": "tsx scripts/check-memory.ts",
"check:projects": "tsx scripts/check-project-manager.ts",
"check:project-ui": "npm run web:build && tsx scripts/check-project-ui.ts",
"check:project-artifacts": "tsx scripts/check-project-artifacts.ts",
"check:admin-config": "tsx scripts/check-admin-config.ts",
"check:audit-coverage": "tsx scripts/check-audit-coverage.ts",
"check:audit-log": "tsx scripts/check-audit-log.ts",
"check:audit-retention": "tsx scripts/check-audit-retention.ts",
"check:service-restart": "tsx scripts/check-service-restart.ts",
"check:review-runs": "tsx scripts/check-review-runs.ts",
"check:users": "tsx scripts/check-users.ts",
"check:user-datastore": "tsx scripts/check-user-datastore.ts",
"check:chat-zdr": "tsx scripts/check-chat-zdr.ts",
"check:chat-collaboration": "tsx scripts/check-chat-collaboration.ts",
"check:chat-live": "tsx scripts/check-chat-live.ts",
"check:release-hardening": "tsx scripts/check-release-hardening.ts",
"check:release-ui": "npm run web:build && tsx scripts/check-release-ui.ts",
"check:groupscope": "tsx scripts/check-groupscope-agent.ts",
"check:group-skills": "tsx scripts/check-group-skills.ts",
"check:wiki-search": "tsx scripts/check-wiki-search.ts",
"ingest:gitbook": "tsx scripts/ingest-gitbook.ts",
"sync:gitbook": "tsx scripts/sync-gitbook.ts",
"users:create": "tsx scripts/create-local-user.ts",
"users:import-team": "tsx scripts/import-team-users.ts",
"users:seed-memory": "tsx scripts/seed-user-memory.ts",
"review:submission": "tsx scripts/review-submission.ts",
"theme-meeting:cron": "tsx scripts/theme-meeting-cron.ts",
"audit:prune": "tsx scripts/audit-prune.ts",
"reset:wiki-index": "tsx scripts/reset-wiki-index.ts",
"db:backup": "tsx scripts/postgres-backup.ts backup",
"db:snapshot": "tsx scripts/postgres-backup.ts backup",
"db:restore": "tsx scripts/postgres-backup.ts restore",
"db:up": "docker compose up -d postgres",
"db:reset": "docker compose down -v && docker compose up -d postgres",
"mail:up": "docker compose up -d mailpit",
"mail:down": "docker compose stop mailpit",
"db:down": "docker compose down"
},
"dependencies": {
"@ai-sdk/openai": "^3.0.73",
"@mastra/core": "^1.45.0",
"@mastra/libsql": "^1.14.0",
"@mastra/loggers": "^1.2.0",
"@mastra/memory": "^1.21.0",
"@mastra/pg": "^1.14.0",
"@mastra/rag": "^2.3.0",
"ai": "^6.0.208",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dotenv": "^17.4.2",
"fast-xml-parser": "^5.9.3",
"geist": "^1.7.2",
"jszip": "^3.10.1",
"lucide-react": "^1.21.0",
"next": "^16.2.9",
"next-themes": "^0.4.6",
"nodemailer": "^9.0.1",
"radix-ui": "^1.6.1",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"shadcn": "^4.13.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0",
"yaml": "^2.9.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.2",
"@types/node": "^26.0.0",
"@types/nodemailer": "^8.0.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"mastra": "^1.15.0",
"playwright": "^1.61.1",
"postcss": "^8.5.16",
"tailwindcss": "^4.3.2",
"tsx": "^4.22.4",
"typescript": "^6.0.3"
}
}