-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.13 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
{
"name": "discord-bot-shared",
"version": "0.14.0",
"type": "module",
"description": "Modules for creating discord bots.",
"repository": "github:adamhl8/discord-bot-shared",
"author": "adamhl8",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rm -rf dist && tsc",
"format": "prettier --write .",
"lint": "tsc --noEmit && eslint ./src/",
"prepare": "find .githooks -type f -exec ln -srf {} .git/hooks/ \\;",
"prepublish": "pnpm build"
},
"peerDependencies": {
"discord.js": "^14.0.0"
},
"devDependencies": {
"@types/node": "^20.6.2",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"discord.js": "^14.13.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-sonarjs": "^0.21.0",
"eslint-plugin-unicorn": "^48.0.1",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-pkg": "^0.18.0",
"prettier-plugin-sh": "^0.13.1",
"typescript": "^5.2.2"
}
}