-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.36 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
48
49
50
51
52
{
"name": "quick-quick-bot",
"version": "1.0.0",
"description": "The trusted quick-quick gnome lackey is a bot to aid all DMs and GMs when they need to think of something on the spot.",
"main": "./build/main.bundle.js",
"scripts": {
"start": "yarn lint && yarn build && node ./build/bot.js",
"build": "tsc -p tsconfig.json",
"lint": "eslint --ext .ts src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gnome-Lackey/quick-quick-bot.git"
},
"keywords": [
"discord",
"d&d",
"bot",
"random",
"generator"
],
"author": "Matthew Pfister",
"license": "ISC",
"bugs": {
"url": "https://github.com/Gnome-Lackey/quick-quick-bot/issues"
},
"pre-commit": [
"lint",
"build"
],
"homepage": "https://github.com/Gnome-Lackey/quick-quick-bot#readme",
"dependencies": {
"@types/node": "^14.0.22",
"@types/ws": "^7.2.6",
"discord.js": "^12.2.0",
"source-map-loader": "^0.2.4",
"ts-loader": "^6.0.4",
"typescript": "^3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.2"
},
"devDependencies": {
"@bsokol/eslint-config": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^7.4.0",
"eslint-plugin-filenames": "^1.3.2",
"pre-commit": "^1.2.2",
"prettier": "^1.18",
"source-map": "^0.7.3"
}
}