-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.28 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
{
"name": "bluebubbles-copilot",
"version": "1.0.0",
"description": "A bot for interacting with the BlueBubbles ecosystem & community.",
"type": "module",
"engines": {
"node": "17.x"
},
"devDependencies": {
"@octokit/types": "^9.0.0",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"prettier": "^2.8.4",
"rimraf": "^4.4.0",
"tsutils": "^3.21.0",
"typescript": "^5.0.2"
},
"scripts": {
"start": "node build/src/main.js",
"clean": "rimraf coverage build tmp",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"lint": "eslint . --ext .ts --ext .mts",
"prettier": "prettier --config .prettierrc --write ."
},
"author": "BlueBubbles Dev Team <bluebubblesapp@gmail.com>",
"license": "Apache-2.0",
"dependencies": {
"@octokit/auth-app": "^4.0.9",
"@octokit/oauth-methods": "^2.0.5",
"@octokit/rest": "^19.0.7",
"async-sema": "^3.1.1",
"discord.js": "^14.8.0",
"dotenv": "^16.0.3",
"tslib": "^2.5.0"
},
"volta": {
"node": "17.9.1"
}
}