-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.1 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
41
42
{
"name": "issue-link-bot",
"version": "0.1.0",
"description": "A Discord bot that turns #issue mentions into issue links.",
"main": "index.ts",
"scripts": {
"lint": "eslint",
"build": "tsc",
"start": "node index.ts"
},
"engines": {
"node": "16.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dploeger/issue-link-bot.git"
},
"author": "Dennis Ploeger <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dploeger/issue-link-bot/issues"
},
"homepage": "https://github.com/dploeger/issue-link-bot#readme",
"dependencies": {
"@discordjs/rest": "0.1.0-canary.0",
"@keyv/postgres": "^1.0.17",
"@keyv/sqlite": "^2.0.3",
"discord-api-types": "^0.24.0",
"discord.js": "^13.2.0",
"keyv": "^4.0.3",
"node-fetch": "^3.0.0"
},
"devDependencies": {
"@types/keyv": "^3.1.3",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "8.3.0",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
}
}