-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
55 lines (55 loc) · 1.42 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
{
"name": "ladybird-bot",
"version": "0.1.0",
"description": "Ladybird Discord Bot",
"license": "BSD-2-Clause",
"scripts": {
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"start:dev": "bun --watch ./src/index.ts",
"start": "bun ./src/index.ts",
"test": "bun test",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/LadybirdBrowser/discord-bot.git"
},
"keywords": [
"discord",
"typescript",
"bot",
"ladybird",
"serenityos"
],
"bugs": {
"url": "https://github.com/LadybirdBrowser/discord-bot/issues"
},
"homepage": "https://github.com/LadybirdBrowser/discord-bot#readme",
"devDependencies": {
"@octokit/types": "^13.5.0",
"@types/bun": "latest",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unused-imports": "^4.0.0",
"prettier": "^3.3.2"
},
"dependencies": {
"@octokit/plugin-throttling": "^9.3.0",
"@octokit/rest": "^21.0.0",
"axios": "^1.4.0",
"bufferutil": "^4.0.7",
"discord.js": "^14.16.3",
"mastodon": "^1.2.2",
"rimraf": "^5.0.0",
"utf-8-validate": "^6.0.3",
"zlib-sync": "^0.1.8",
"zod": "^3.23.8"
},
"peerDependencies": {
"typescript": "^5.5.3"
}
}