-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.49 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.49 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
{
"name": "meowhaha",
"version": "1.0.0",
"description": "✨ Meowhaha is a playful and chaotic cat-themed Discord server, and this project is its main Discord bot built with Node.js. It handles welcome messages, webhooks, role automation, and other server interactions.",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node-dev -r tsconfig-paths/register src/index.ts",
"build": "tsc",
"start": "node -r module-alias/register dist/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"keywords": [
"discord",
"webhook",
"bot",
"meowhaha",
"vibes",
"typescript"
],
"_moduleAliases": {
"@": "dist"
},
"repository": "https://github.com/MatheusIshiyama/meowhaha.git",
"author": "Matheus Ishiyama <matheus.ishiyama@outlook.com>",
"license": "MIT",
"dependencies": {
"axios": "^1.10.0",
"cors": "^2.8.5",
"discord.js": "^14.21.0",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"form-data": "^4.0.3",
"module-alias": "^2.2.3",
"node-cron": "^4.1.1"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/module-alias": "^2.0.4",
"@types/node": "^24.0.3",
"eslint": "^9.29.0",
"eslint-import-resolver-typescript": "^4.4.3",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-security": "^3.0.1",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.1"
}
}