-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.43 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.43 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "nypsi",
"version": "10.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"format": "prettier --write --cache --cache-location .prettiercache ./src/",
"format:check": "prettier --check --cache --cache-location .prettiercache ./src/",
"clean": "rm -rf dist node_modules",
"build": "tsc --incremental",
"watch": "tsc --build --watch",
"lint": "oxlint --type-aware",
"validate": "npm run format:check && npm run test && npm run lint",
"seed": "NODE_ENV=development tsx src/scripts/seed.ts",
"test": "vitest run"
},
"imports": {
"#generated/prisma": "./dist/generated/prisma/client.js"
},
"author": "mxz7",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "3.1000.0",
"@catppuccin/palette": "1.7.1",
"@discordjs/rest": "2.6.0",
"@hono/node-server": "^1.19.11",
"@prisma/adapter-pg": "^7.4.2",
"@prisma/client": "7.4.2",
"@twemoji/parser": "^17.0.1",
"@yusifaliyevpro/countries": "^2.2.2",
"@zeyrbot/urbandictionary": "^1.0.3",
"bufferutil": "4.1.0",
"bullmq": "^5.67.3",
"chalk": "4.1.2",
"cron": "^4.4.0",
"crypto-js": "4.2.0",
"dayjs": "1.11.20",
"discord-hybrid-sharding": "3.0.1",
"discord.js": "14.25.1",
"dotenv": "17.3.1",
"fast-sort": "3.4.1",
"hono": "^4.12.8",
"ioredis": "5.9.2",
"lodash": "4.17.23",
"mathjs": "15.1.1",
"ms": "2.1.3",
"nanoid": "^3.3.11",
"node-os-utils": "1.3.7",
"openai": "^6.27.0",
"p-all": "3.0.0",
"sharp": "^0.34.5",
"string-similarity": "4.0.4",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/crypto-js": "4.2.2",
"@types/figlet": "1.7.0",
"@types/lodash": "4.17.24",
"@types/ms": "2.1.0",
"@types/node": "25.3.3",
"@types/node-os-utils": "1.3.4",
"@types/string-similarity": "4.0.2",
"@types/urban-dictionary": "3.0.2",
"oxlint": "^1.51.0",
"oxlint-tsgolint": "^0.15.0",
"prettier": "3.8.1",
"prisma": "7.4.2",
"tsx": "^4.21.0",
"typescript": "5.9.3",
"vitest": "^4.0.18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mxz7/nypsi.git"
},
"bugs": {
"url": "https://github.com/mxz7/nypsi/issues"
},
"homepage": "https://github.com/mxz7/nypsi#readme",
"pnpm": {
"onlyBuiltDependencies": [
"@prisma/client",
"@prisma/engines",
"prisma"
],
"ignoredBuiltDependencies": [
"esbuild"
]
}
}