-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
47 lines (47 loc) · 1.03 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
40
41
42
43
44
45
46
47
{
"name": "@r6stats/valkord",
"version": "0.0.13",
"description": "Valkord Micro Framework for discord.js Bots",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/R6Stats/valkord-discord"
},
"keywords": [
"discord",
"discord-bot",
"discordjs"
],
"contributors": [
"Jake <jake@r6stats.com>"
],
"license": "GPL-3.0",
"scripts": {
"build": "rm -rf dist/ && tsc",
"dev": "tsc --watch"
},
"dependencies": {
"discord.js": "^12.2.0",
"dotenv": "^8.2.0",
"reflect-metadata": "^0.1.13",
"ts-node": "^8.10.2"
},
"peerDependencies": {
"discord.js": "^12.2.0"
},
"devDependencies": {
"@types/node": "^14.0.22",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^7.4.0",
"ts-node-dev": "^1.0.0-pre.51",
"tslib": "^2.0.0",
"typescript": "^3.9.6"
}
}