-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.81 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.81 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
{
"name": "contribution-tracker",
"module": "index.ts",
"type": "module",
"scripts": {
"format": "biome format . --write",
"format:check": "biome format .",
"test:github": "bun --env-file=.env scripts/test-github-issues.ts",
"analyze-pr": "bun --env-file=.env scripts/analyze-single-pr.ts",
"generate:weekly": "bun --env-file=.env scripts/generate-weekly-overview.ts",
"generate:monthly": "bun --env-file=.env scripts/generate-this-month-overview.ts",
"generate:changelog": "bun --env-file=.env scripts/generate-monthly-changelog.ts",
"sync:discord": "bun --env-file=.env scripts/sync-discord-roles.ts",
"notifications:issues": "bun --env-file=.env scripts/issue-notifications.ts",
"notifications:pr": "bun --env-file=.env scripts/pr-notifications.ts",
"export:sponsorship": "bun --env-file=.env scripts/generate-sponsorship-csv.ts",
"dev": "vite",
"start": "vite",
"build": "vite build",
"vercel-build": "bun run build",
"preview": "vite preview"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@slack/web-api": "^7.9.2",
"@types/bun": "latest",
"@types/ms": "^2.1.0",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"discord.js": "^14.19.3",
"kleur": "^4.1.5",
"vite": "^7.0.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@ai-sdk/openai": "^1.3.22",
"@anthropic-ai/sdk": "^0.24.3",
"@octokit/rest": "^21.0.0",
"@tippyjs/react": "^4.2.6",
"ai": "^4.3.16",
"dotenv": "latest",
"file-system-cache": "2.3.0",
"level": "^8.0.1",
"lucide-react": "^0.474.0",
"ms": "^2.1.3",
"parse-diff": "^0.11.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"recharts": "^2.15.1",
"redaxios": "^0.5.1"
}
}