-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.55 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
{
"name": "patto-bot-template",
"version": "1.4.0",
"description": "Template profesional de Discord Bot con TypeScript, decoradores, sistema de plugins, subcomandos y grupos, componentes interactivos (botones, selects, modals), validación de entorno, testing completo y arquitectura modular. Listo para producción.",
"main": "dist/src/index.js",
"scripts": {
"dev": "ts-node -r tsconfig-paths/register src/index.ts",
"dev:hot": "ts-node-dev -r tsconfig-paths/register --project tsconfig.json --respawn --transpile-only src/index.ts",
"dev:sharding": "ts-node -r tsconfig-paths/register src/sharding.ts",
"build": "tsc && tsc-alias",
"start": "node -r tsconfig-paths/register dist/src/index.js",
"start:sharding": "node -r tsconfig-paths/register dist/src/sharding.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:unit": "jest --testPathPattern=tests/unit",
"test:integration": "jest --testPathPattern=tests/integration",
"test:e2e": "jest --testPathPattern=tests/e2e",
"lint": "eslint src --ext .ts",
"patto:check": "patto check --root .",
"format": "prettier --write \"src/**/*.ts\""
},
"author": "HormigaDev",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/HormigaDev/patto-bot-template.git"
},
"bugs": {
"url": "https://github.com/HormigaDev/patto-bot-template/issues"
},
"homepage": "https://github.com/HormigaDev/patto-bot-template#readme",
"devDependencies": {
"@patto/cli": "^0.1.5",
"@types/jest": "^29.5.14",
"@types/node": "^24.10.0",
"@typescript-eslint/eslint-plugin": "^8.46.3",
"@typescript-eslint/parser": "^8.46.3",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"jest": "^29.7.0",
"prettier": "^3.6.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tsc-alias": "^1.8.16",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.3"
},
"dependencies": {
"discord.js": "^14.26.4",
"dotenv": "^17.4.2",
"ioredis": "^5.10.1",
"reflect-metadata": "^0.2.2"
},
"keywords": [
"discord",
"discord-bot",
"discord.js",
"typescript",
"bot-template",
"boilerplate",
"starter-template"
]
}