-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 934 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 934 Bytes
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
{
"name": "http-bot",
"version": "1.0.0",
"description": "A Discord bot built for the community, by the community",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "node dist/client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prat-zero/http-bot.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/prat-zero/http-bot/issues"
},
"homepage": "https://github.com/prat-zero/http-bot#readme",
"devDependencies": {
"@types/express": "^4.17.14",
"@types/node": "^18.7.23",
"discord-api-types": "^0.37.11",
"prettier": "^2.7.1",
"typed-emitter": "^2.1.0",
"typescript": "^4.8.4"
},
"dependencies": {
"axios": "^0.27.2",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"raw-body": "^2.5.1",
"tweetnacl": "^1.0.3"
}
}