-
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) · 888 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 888 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
{
"name": "fumo-api",
"version": "1.0.0",
"license": {
"name": "MIT",
"url": "https://mit-license.org/"
},
"description": "A Rest API to get image of fumos (Touhou plushies)",
"scripts": {
"start": "bun src/index.ts",
"dev": "bun --hot src/index.ts",
"format": "bun run prettier --write"
},
"main": "dist/index.js",
"dependencies": {
"@elysiajs/eden": "^1.3.2",
"@elysiajs/swagger": "^1.3.0",
"chalk": "^5.4.1",
"discord-api-types": "0.38.11",
"elysia": "^1.3.4",
"mongodb": "6.16.0",
"node-cache": "5.1.2",
"sift": "17.1.3"
},
"devDependencies": {
"@types/bun": "latest",
"mongodb-memory-server": "10.1.4",
"prettier": "3.5.3"
},
"private": true,
"peerDependencies": {
"typescript": "5"
}
}