-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 851 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 851 Bytes
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
{
"name": "coffee",
"version": "1.0.0",
"description": "디스코드 커피챗 매칭 봇",
"type": "module",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"check": "astro check",
"match": "bun run match/index.ts",
"test": "bun test",
"lint": "biome check .",
"format": "biome format --write .",
"typecheck": "astro check && tsc --project match/tsconfig.json --noEmit",
"deploy": "bun run build && wrangler deploy",
"register-commands": "bun run scripts/register-commands.ts"
},
"dependencies": {
"astro": "^6.1.1",
"@astrojs/cloudflare": "latest",
"discord.js": "^14.25.1",
"discord-api-types": "^0.37.119"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"@biomejs/biome": "^2.3.12",
"@types/bun": "latest",
"typescript": "^5.9.3",
"wrangler": "^4.6.0"
}
}