-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1000 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1000 Bytes
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
{
"name": "ailurus",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"build": "prisma generate && tsup src/index.ts --minify"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.28.0",
"dependencies": {
"@dotenvx/dotenvx": "^1.51.4",
"@prisma/client": "^6.5.0",
"@types/node-cron": "^3.0.11",
"axios": "^1.8.4",
"cheerio": "^1.0.0",
"discord.js": "^14.18.0",
"express": "^5.1.0",
"node-cron": "^3.0.3",
"rss-parser": "^3.13.0"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@types/node": "^25.0.6",
"eslint": "^9.26.0",
"prisma": "^6.5.0",
"tsup": "^8.4.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2",
"typescript-eslint": "^8.32.0"
},
"pnpm": {
"ignoredBuiltDependencies": [
"@prisma/client"
],
"onlyBuiltDependencies": [
"@prisma/client"
]
}
}