forked from xp-bot/bug-bot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 894 Bytes
/
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
{
"name": "bugbot",
"version": "2.0.0",
"description": "Bug Bot rewrite in TypeScript",
"main": "src/index.ts",
"scripts": {
"build": "tsc",
"start": "node ./build/index.js",
"prod": "npm run build && npm run start",
"dev": "ts-node ./src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xp-bot/BugBot.git"
},
"author": "angelsflyinhell",
"license": "ISC",
"bugs": {
"url": "https://github.com/xp-bot/BugBot/issues"
},
"homepage": "https://github.com/xp-bot/BugBot#readme",
"devDependencies": {
"prettier": "^2.5.1",
"ts-node": "^10.4.0"
},
"dependencies": {
"@octokit/rest": "^18.12.0",
"axios": "^0.27.2",
"discord-api-types": "^0.33.3",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"typescript": "^5.2.2",
"winston": "^3.7.2"
}
}