-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 KB
/
package.json
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
{
"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",
"dev": "vite",
"build": "vite build",
"vercel-build": "bun run build",
"preview": "vite preview"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@types/bun": "latest",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"discord.js": "^14.17.3",
"vite": "^6.0.5"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.24.3",
"@octokit/rest": "^21.0.0",
"@tippyjs/react": "^4.2.6",
"dotenv": "latest",
"file-system-cache": "^3.0.0-alpha.8",
"level": "^8.0.1",
"lucide-react": "^0.474.0",
"parse-diff": "^0.11.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"recharts": "^2.15.1",
"redaxios": "^0.5.1"
}
}