forked from open-source-at-illinois/osai-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.02 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
{
"name": "osai-bot",
"version": "1.0.0",
"description": "Open-Source at Illinois Official Discord Bot",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node -- index.ts",
"deploy-slash": "ts-node -- deploy-commands.ts",
"start-full": "ts-node -- deploy-commands.ts && ts-node -- index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/open-source-at-illinois/osai-bot.git"
},
"author": "xuxey",
"license": "ISC",
"bugs": {
"url": "https://github.com/open-source-at-illinois/osai-bot/issues"
},
"homepage": "https://github.com/open-source-at-illinois/osai-bot#readme",
"devDependencies": {
"@types/node": "^16.10.2",
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
},
"dependencies": {
"@discordjs/builders": "^0.6.0",
"@discordjs/rest": "^0.1.0-canary.0",
"discord-api-types": "^0.23.1",
"discord.js": "^13.1.0",
"dotenv": "^10.0.0",
"got": "^11.8.2"
}
}