This repository was archived by the owner on Apr 9, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.32 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.32 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
{
"name": "pyebot",
"version": "1.0.0",
"description": "Bot del Discord oficial de la comunidad Programadores y Estudiantes (PyE)",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build:dev": "tsc --watch",
"start": "tsc && tsc-alias && node dist/index.js",
"dev": "tsc-watch --onSuccess \"node .\"",
"fmt": "biome format --write",
"fmt:check": "biome format",
"lint": "biome lint",
"lint:fix": "biome lint --write",
"check": "biome check",
"check:fix": "biome check --write",
"migrate-db": "pnpm drizzle-kit generate && pnpm drizzle-kit migrate",
"clean": "rimraf dist commands.json"
},
"author": "Comunidad PyE",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "2.1.3",
"@types/node": "^24.1.0",
"@types/pg": "^8.15.5",
"drizzle-kit": "^0.31.4",
"lefthook": "^1.12.2",
"lint-staged": "^16.1.2",
"rimraf": "^6.0.1",
"tsc-alias": "^1.8.16",
"tsc-watch": "^7.1.1",
"typescript": "^5.9.2"
},
"dependencies": {
"@google/genai": "^1.12.0",
"dotenv": "^17.2.1",
"drizzle-orm": "^0.44.4",
"highlight.js": "^11.11.1",
"module-alias": "^2.2.3",
"pg": "^8.16.3",
"seyfert": "^3.2.5"
},
"lint-staged": {
"*.{ts,js,mjs,cjs,json}": "biome check --write"
},
"_moduleAliases": {
"@": "dist"
}
}