-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.71 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
60
{
"name": "@symbux/turbo-discord",
"version": "0.8.8",
"description": "A discord plugin for the Turbo engine.",
"main": "lib/index.js",
"repository": "git@github.com:Symbux/Turbo-Discord.git",
"author": "Symbux Dev <hello@symbux.dev> (https://symbux.dev)",
"license": "Apache-2.0",
"private": false,
"homepage": "https://github.com/Symbux/Turbo-Discord#readme",
"bugs": {
"url": "https://github.com/Symbux/Turbo-Discord/issues"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"turbo",
"engine",
"services",
"plugin",
"discord",
"oauth2",
"sso",
"discord-bot",
"bot"
],
"scripts": {
"start": "ENV=development node -r ts-node/register demo/index.ts",
"build": "rm -rf lib && tsc",
"lint": "eslint ./ --config .eslintrc.cjs --ext .ts",
"prepublishOnly": "yarn lint && yarn build",
"changelog": "auto-changelog --template keepachangelog --commit-limit false --hide-credit",
"add-peers": "yarn add --peer @symbux/turbo @symbux/injector"
},
"peerDependencies": {
"@symbux/injector": "^1.5.0",
"@symbux/turbo": "^0.7.0"
},
"devDependencies": {
"@types/node": "^20.8.4",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"dotenv": "^16.3.1",
"eslint": "^8.51.0",
"eslint-plugin-no-unsanitized": "^4.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-sonarjs": "^0.21.0",
"eslint-plugin-xss": "^0.1.12",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@discordjs/rest": "^2.0.1",
"cross-fetch": "^4.0.0",
"discord-api-types": "^0.37.60",
"discord.js": "^13.16.0"
}
}