This repository was archived by the owner on Aug 17, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.35 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.35 KB
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
48
49
50
51
{
"name": "badbot-framework",
"version": "2.0.0",
"description": "A basic framework for Discord bots.",
"main": "src/index.ts",
"scripts": {
"build": "npm run clean && tsc --project tsconfig.build.json",
"clean": "rimraf dist",
"start": "ts-node ./src/index.ts",
"start:dev": "nodemon",
"start:prod": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/llamasking/badbot-framework.git"
},
"author": {
"name": "llamasking",
"url": "https://github.com/llamasking"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/llamasking/badbot-framework/issues"
},
"homepage": "https://github.com/llamasking/badbot-framework#readme",
"devDependencies": {
"@types/node": "^16.4.7",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.3.2",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"bufferutil": "^4.0.3",
"discord.js": "^12.5.3",
"dotenv": "^10.0.0",
"nodemon": "^2.0.12",
"utf-8-validate": "^5.0.5",
"zlib-sync": "^0.1.7"
},
"nodemonConfig": {
"ignore": [
"dist/*"
]
}
}