-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.33 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.33 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
{
"name": "utw-bot",
"version": "1.0.0",
"private": true,
"description": "A Discord bot for the Undertale/Deltarune Wiki server, made through Cloudflare Workers.",
"repository": {
"type": "git",
"url": "git+https://github.com/utdrwiki/bot.git"
},
"keywords": [
"discord",
"bot",
"cloudflare",
"workers",
"typescript"
],
"author": {
"name": "Luka Simić",
"email": "git@kocka.tech",
"url": "https://kocka.tech"
},
"license": "MIT",
"scripts": {
"deploy": "wrangler deploy",
"start": "wrangler dev",
"cf-typegen": "wrangler types",
"register": "tsx scripts/register.ts",
"register-prod": "tsx scripts/register.ts --prod",
"post": "tsx scripts/post.ts",
"post-prod": "tsx scripts/post.ts --prod"
},
"dependencies": {
"discord-interactions": "4.1.0"
},
"devDependencies": {
"@cloudflare/workers-types": "4.20241112.0",
"@typescript-eslint/eslint-plugin": "5.61.0",
"@typescript-eslint/parser": "5.61.0",
"dotenv": "16.4.5",
"eslint": "8.44.0",
"eslint-plugin-jsdoc": "46.4.3",
"eslint-plugin-promise": "6.1.1",
"tsx": "4.19.2",
"typescript": "5.6.3",
"wrangler": "3.87.0"
}
}