-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.58 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
{
"name": "discord-server-moderation-bot",
"version": "1.0.0",
"description": "Discord moderation bot with advanced features for server management.",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "tsc && tsc-watch --onSuccess \"npm run build:cjs && npm run build:esm\"",
"build:cjs": "tsc --module commonjs --outDir dist",
"build:esm": "tsc --module esnext --outDir dist/esm",
"start": "node dist/index.js",
"dev": "tsc-watch --onSuccess \"npm run build:cjs && node dist/index.js\"",
"lint": "eslint src//.ts",
"format": "prettier --write src//.ts",
"test": "jest",
"coverage": "jest --coverage",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spectra-ai-codegen/discord-server-moderation-bot.git"
},
"author": "Spectra.codes",
"license": "MIT",
"devDependencies": {
"@types/discord.js": "^14.7.2",
"@types/node": "^18.11.18",
"@types/mongoose": "^5.11.97",
"@types/spacy": "^3.3.1",
"@types/puppeteer": "^19.5.2",
"@types/axios": "^0.14.2",
"autoprefixer": "^10.4.14",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.6.4",
"mongoose": "^6.8.1",
"natural": "^8.5.1",
"postcss": "^8.4.21",
"prettier": "^2.8.8",
"spacy": "^3.5.0",
"tailwindcss": "^3.3.2",
"tsc-watch": "^5.0.3",
"typescript": "^4.9.4"
},
"dependencies": {
"axios": "^1.3.4",
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"puppeteer": "^19.9.0"
}
}