-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeno.json
More file actions
43 lines (42 loc) · 1.54 KB
/
deno.json
File metadata and controls
43 lines (42 loc) · 1.54 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
{
"tasks": {
"dev-serve": "deno run --watch --env --allow-all src/main.ts",
"dev-tailwind": "deno run --allow-all npm:@tailwindcss/cli --input ./src/web/assets/main.css --output ./public/tailwind.generated.css --watch",
"dev": {
"dependencies": ["dev-serve", "dev-tailwind"]
},
"deploy-commands": "deno run --env --allow-all src/commands.ts",
"build": "deno run --allow-all npm:@tailwindcss/cli --input ./src/web/assets/main.css --output ./public/tailwind.generated.css",
"start": {
"command": "deno run --env --allow-all src/main.ts",
"dependencies": ["build", "deploy-commands"]
}
},
"unstable": ["kv", "cron"],
"fmt": {
"lineWidth": 140,
"proseWrap": "preserve"
},
"imports": {
"@discordjs/builders": "npm:@discordjs/builders@^1.9.0",
"@discordjs/collection": "npm:@discordjs/collection@^2.1.1",
"@discordjs/formatters": "npm:@discordjs/formatters@^0.5.0",
"@discordjs/rest": "npm:@discordjs/rest@^2.4.0",
"@discordjs/util": "npm:@discordjs/util@^1.1.1",
"@discordjs/ws": "npm:@discordjs/ws@^2.0.0",
"@std/assert": "jsr:@std/assert@1",
"date-fns": "npm:date-fns@^4.1.0",
"discord-api-types": "npm:discord-api-types@^0.37.102",
"discord.js": "npm:discord.js@^14.16.3",
"hono": "npm:hono@^4.7.5",
"@/": "./src/",
"nanoid": "npm:nanoid@^5.1.5",
"satori": "npm:satori@^0.12.2",
"tailwindcss": "npm:tailwindcss@^4.1.3"
},
"compilerOptions": {
"jsx": "precompile",
"jsxImportSource": "npm:hono/jsx"
},
"nodeModulesDir": "auto"
}