forked from vercel/chat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.44 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.44 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
{
"name": "chat-sdk-monorepo",
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/vercel/chat.git"
},
"homepage": "https://github.com/vercel/chat#readme",
"bugs": {
"url": "https://github.com/vercel/chat/issues"
},
"license": "MIT",
"scripts": {
"build": "turbo build",
"build:validate": "SLACK_BOT_TOKEN=xoxb-mock SLACK_SIGNING_SECRET=mock TEAMS_APP_ID=mock TEAMS_APP_PASSWORD=mock TEAMS_APP_TENANT_ID=mock GOOGLE_CHAT_CREDENTIALS='{\"type\":\"service_account\",\"project_id\":\"mock\",\"private_key\":\"-----BEGIN RSA PRIVATE KEY-----\\nMOCK\\n-----END RSA PRIVATE KEY-----\",\"client_email\":\"mock@mock.iam.gserviceaccount.com\"}' REDIS_URL=redis://localhost:6379 RECORDING_ENABLED=false turbo build",
"dev": "turbo dev",
"test": "turbo test --filter='!example-nextjs-chat'",
"test:workspace": "vitest run",
"typecheck": "turbo typecheck",
"knip": "knip",
"validate": "pnpm knip && pnpm check && turbo typecheck && turbo test && pnpm build:validate",
"clean": "turbo clean && rm -rf node_modules",
"check": "ultracite check",
"fix": "ultracite fix"
},
"devDependencies": {
"@biomejs/biome": "^2.4.0",
"@changesets/cli": "^2.29.8",
"@vitest/coverage-v8": "^2.1.8",
"knip": "^5.78.0",
"turbo": "^2.3.0",
"typescript": "^5.7.2",
"ultracite": "7.2.3",
"vitest": "^2.1.8"
},
"packageManager": "pnpm@9.15.0"
}