-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.05 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
{
"name": "discord.mybot",
"version": "0.0.1",
"description": "Módulo de Node.js que permite interactuar con la API de Discord con mucha facilidad",
"main": "dist/index.js",
"scripts": {
"test": "node example/bot.js",
"build:ts": "npx tsc -d",
"postbuild": "node scripts/postbuild.js",
"build": "npm run build:ts",
"clean-src": "rm -r src/*.js src/*.d.ts"
},
"dependencies": {
"@types/node": "^15.0.1",
"@types/ws": "^7.4.2",
"ws": "^7.2.3"
},
"devDependencies": {
"typescript": "^4.2.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mybot-team/discord.mybot.git"
},
"author": "MyBOT Team",
"license": "MIT",
"bugs": {
"url": "https://github.com/mybot-team/discord.mybot/issues"
},
"homepage": "https://github.com/mybot-team/discord.mybot",
"keywords": [
"bots",
"discord",
"websocket",
"discord api",
"bots discord",
"discord.mybot"
]
}