-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.05 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.05 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
{
"name": "rpc-image-server",
"version": "1.0.0",
"description": "A relay server to allow local files to be used as icons in Discord RPCs",
"author": "HypherionSA",
"license": "MIT",
"private": true,
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write 'src/**/*.ts'",
"devserver": "ts-node -r dotenv/config ./src/index.ts",
"build": "tsc",
"runserver": "node -r dotenv/config dist/index.js"
},
"dependencies": {
"@hono/node-server": "^1.14.0",
"@mikro-orm/core": "^6.4.12",
"@mikro-orm/postgresql": "^6.4.12",
"aws-sdk": "^2.1692.0",
"dotenv": "^16.4.7",
"file-type": "^20.4.1",
"hono": "^4.7.6",
"minio": "^8.0.5",
"sharp": "^0.34.1",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@types/minio": "^7.1.1",
"@types/node": "^22.14.0",
"typescript": "^5.8.3"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}