-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.51 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.51 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "aethel",
"version": "2.1.0",
"description": "A privacy-conscious, production-ready Discord user bot",
"type": "module",
"main": "dist/index.js",
"scripts": {
"start": "concurrently \"node dist/index.js\" \"node dist/mcp/server.js\"",
"dev": "concurrently \"tsx watch src/index.ts\" \"tsx watch src/mcp/server.ts\"",
"build": "tsc && node scripts/fix-imports.js",
"migrate": "node scripts/run-migrations.js",
"do": "pnpm run migrate && pnpm run build && pnpm run start",
"lint": "eslint ./src ./web/src --ext .ts,.tsx",
"lint:fix": "eslint ./src ./web/src --ext .ts,.tsx --config eslint.config.cjs --fix",
"lint:format": "eslint ./src ./web/src --ext .ts,.tsx --config eslint.config.cjs --format=codeframe",
"format": "prettier --write \"**/*.{js,json,md,ts,tsx}\" --ignore-path .prettierignore",
"format:check": "prettier --check \"**/*.{js,json,md,ts,tsx}\" --ignore-path .prettierignore",
"check": "bun run lint && bun run format:check"
},
"dependencies": {
"@atproto/identity": "^0.4.9",
"@discordjs/rest": "^2.6.0",
"@fedify/fedify": "^1.8.12",
"@massive.com/client-js": "^9.0.0",
"@types/he": "^1.2.3",
"@types/sanitize-html": "^2.16.0",
"axios": "^1.12.2",
"canvas": "^3.2.0",
"city-timezones": "^1.3.2",
"concurrently": "^9.2.1",
"cors": "^2.8.5",
"discord.js": "^14.22.1",
"dotenv": "^16.6.1",
"eslint-plugin-prettier": "^5.5.4",
"express": "^4.21.2",
"express-rate-limit": "^7.5.1",
"express-validator": "^7.2.1",
"he": "^1.2.0",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"moment-timezone": "^0.6.0",
"node-fetch": "^3.3.2",
"open-graph-scraper": "^6.10.0",
"openai": "^5.23.1",
"pg": "^8.16.3",
"sanitize-html": "^2.17.0",
"uuid": "^11.1.0",
"validator": "^13.15.15",
"whois-json": "^2.0.4",
"winston": "^3.17.0"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.23",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.5.2",
"@types/open-graph-scraper": "^5.2.3",
"@types/pg": "^8.15.5",
"@types/uuid": "^10.0.0",
"@types/validator": "^13.15.3",
"@types/whois-json": "^2.0.4",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.4.0",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"tsc-alias": "^1.8.16",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.20.6",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.1"
}
}