-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.6 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.6 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
{
"name": "servant",
"version": "1.1.0",
"type": "module",
"description": "Bot de moderação simples no Discord",
"main": "index.js",
"scripts": {
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" --fix",
"prettier": "prettier \"src/**/*.ts\" --check",
"prettier:fix": "prettier \"src/**/*.ts\" --write",
"start": "node dist/index.js",
"build": "npm run build:clean && npm run build:compile",
"build:start": "npm run build && npm run start",
"build:start:nodb": "npm run build ; npm run start",
"build:clean": "rimraf dist/",
"build:compile": "tsc",
"watch": "NODE_ENV=development tsx --watch ./src/",
"test": "NODE_ENV=test tsx --test",
"test:coverage": "NODE_ENV=test tsx --experimental-test-coverage --test"
},
"keywords": [
"bot",
"Moderation",
"Discord"
],
"author": "Alfheim Bot",
"license": "Apache-2.0",
"packageManager": "pnpm@10.14.0",
"devDependencies": {
"@discordx/utilities": "^8.0.0",
"@eslint/js": "^9.39.1",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"concurrently": "^9.2.1",
"dotenv": "^17.2.3",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.7.4",
"reflect-metadata": "^0.2.2",
"rimraf": "^6.1.2",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"tsyringe": "^4.10.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1"
},
"dependencies": {
"@discordx/importer": "^1.3.3",
"discord.js": "^14.25.1",
"discordx": "^11.13.2"
}
}