-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 996 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
{
"name": "osrs-discord-bot",
"version": "1.0.0",
"description": "OSRS Discord Bot",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"devStart": "node -r dotenv/config src/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"updateCommands": "node scripts/updateCommands.js",
"devUpdateCommands": "node -r dotenv/config scripts/updateCommands.js",
"scrapeExchangeItems": "node scripts/scrapeExchangeItems.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Birjot-Bala/osrs-discord-bot-js.git"
},
"author": "Birjot Bala",
"license": "MIT",
"bugs": {
"url": "https://github.com/Birjot-Bala/osrs-discord-bot-js/issues"
},
"homepage": "https://github.com/Birjot-Bala/osrs-discord-bot-js#readme",
"dependencies": {
"@aws-sdk/client-sqs": "^3.264.0",
"axios": "^0.25.0",
"slash-create": "^5.7.1"
},
"devDependencies": {
"dotenv": "^16.0.1",
"eslint": "^8.21.0"
}
}