-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.56 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
53
54
55
56
57
58
59
{
"name": "discord-role-linker",
"version": "0.0.9",
"description": " A powerful library to easily manage your Discord linked roles using OAuth2",
"author": "Vedinsoh",
"license": "MIT",
"keywords": [
"discord",
"linked-roles",
"bots",
"roles"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Vedinsoh/discord-role-linker.git"
},
"bugs": {
"url": "https://github.com/Vedinsoh/discord-role-linker/issues"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rm -rf dist && tsc",
"build:watch": "tsc -w",
"reinstall": "rm -rf node_modules && yarn install",
"update": "yarn upgrade-interactive",
"lint": "eslint src --ext .ts",
"prettier": "prettier --write src"
},
"dependencies": {
"@discordjs/rest": "^1.5.0",
"cookie-parser": "^1.4.6",
"discord-api-types": "^0.37.24",
"express": "^4.18.2",
"mongoose": "^6.8.2"
},
"devDependencies": {
"@sapphire/ts-config": "^3.3.4",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"@types/eslint": "^8.4.10",
"@types/express": "^4.17.15",
"@types/node": "^18.11.18",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.1",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=16.9.0"
},
"packageManager": "yarn@3.3.1",
"main": "dist/index.js",
"types": "dist/index.d.ts"
}