-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.1 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
{
"name": "botlightr",
"version": "1.1.1",
"description": "A simple library for making discord.js bot commands.",
"main": "dist/bundle.js",
"typings": "dist/index.d.ts",
"scripts": {
"build:dev": "webpack --mode=development",
"build:production": "webpack --mode=production",
"dev": "webpack --watch --mode=development",
"prepare": "npm run build:production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/teovillanueva/botlightr.git"
},
"author": "Teodoro Villanueva",
"license": "ISC",
"devDependencies": {
"@types/node": "^13.11.0",
"@types/webpack-env": "^1.15.1",
"@types/webpack-node-externals": "^1.7.1",
"nodemon": "^2.0.2",
"nodemon-webpack-plugin": "^4.3.1",
"ts-loader": "^6.2.2",
"ts-node": "^8.8.2",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"discord.js": "^12.1.1"
},
"bugs": {
"url": "https://github.com/teovillanueva/botlightr/issues"
},
"homepage": "https://github.com/teovillanueva/botlightr#readme"
}