-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 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
{
"name": "skelton-bot",
"version": "1.5.2",
"description": "A simple bot library with advanced capabilities",
"main": "./build/main.js",
"types": "./build/main.d.ts",
"scripts": {
"test": "tsc && node test/example/main.js",
"build": "tsc --outdir build/",
"build-local": "npm run build && npm pack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kruthers/skelton-bot.git"
},
"author": "kruthers",
"contributors": [
{
"name": "kruthers",
"url": "https://www.kruthers.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/kruthers/skelton-bot/issues"
},
"homepage": "https://github.com/kruthers/skelton-bot/#readme",
"devDependencies": {
"@types/node": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "^8.15.0",
"eslint-config-google": "^0.14.0",
"typescript": "^4.6.4"
},
"dependencies": {
"colors": "^1.4.0",
"discord.js": "^14.3.0",
"winston": "^3.7.2",
"winston-daily-rotate-file": "^4.6.1"
}
}