-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 773 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 773 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
{
"name": "magane-server",
"version": "2.0.0",
"description": "Backend service for the Magane Discord plugin",
"main": "dist/index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/Pitu/Magane-server.git"
},
"author": {
"name": "Pitu",
"email": "heyitspitu@gmail.com",
"url": "https://github.com/Pitu"
},
"license": "MIT",
"scripts": {
"dev": "bun run --hot src/index.ts"
},
"type": "module",
"dependencies": {
"@prisma/client": "^5.12.1",
"axios": "^1.6.8",
"fs-jetpack": "^5.1.0",
"hono": "^4.2.1",
"sharp": "^0.33.3"
},
"devDependencies": {
"@types/bun": "latest",
"eslint": "^8.57.0",
"eslint-config-neon": "^0.1.60",
"prettier": "^3.2.5",
"prisma": "^5.12.1"
},
"trustedDependencies": [
"sharp"
]
}