-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.48 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": "@buildtheearth/bot-utils",
"version": "1.2.0",
"description": "A utility library for the bots!",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/**/*"
],
"scripts": {
"build": "tsc",
"lint": "eslint src --fix",
"format": "prettier --write -c src",
"prepublish": "npm run postinstall && npm run pre-commit && npm run build",
"postinstall": "patch-package",
"generate-docs": "jsdoc --configure .jsdoc.json --verbose",
"pre-commit": "npm run lint && npm run format && npm run generate-docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BuildTheEarth/bot-utils.git"
},
"author": "BuildTheEarth",
"license": "MIT",
"bugs": {
"url": "https://github.com/BuildTheEarth/bot-utils/issues"
},
"homepage": "https://github.com/BuildTheEarth/bot-utils#readme",
"devDependencies": {
"@types/lodash": "^4.14.179",
"@types/ms": "^0.7.31",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "4.30.0",
"@typescript-eslint/parser": "4.33.0",
"better-docs": "^2.7.2",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"jsdoc": "~3.6.10",
"jsdoc-chameleon-template": "^1.0.2",
"minami": "^1.2.3",
"prettier": "^2.5.1",
"tsconfig-paths": "^3.13.0",
"typescript": "^4.6.2"
},
"dependencies": {
"discord.js": "^14.0.1",
"json5": "^2.2.0",
"lodash": "^4.17.21",
"ms": "^2.1.3",
"patch-package": "^6.4.7"
}
}