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
|
{
"name": "imafilehoster",
"displayName": "I'm a File hoster.",
"version": "1.0.0",
"description": "iLotterytea's File hoster using ExpressJS.",
"main": "index.ts",
"scripts": {
"start": "ts-node ./index.ts --standalone"
},
"repository": {
"type": "git",
"url": "git+https://github.com/notdankenough/fh.git"
},
"author": "NotDankEnough <hatesociety@pm.me> (https://hmmtodayiwill.ru)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/notdankenough/fh/issues"
},
"homepage": "https://github.com/notdankenough/fh#readme",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^9.3.0",
"express": "^4.18.1",
"fs": "^0.0.1-security",
"mime": "^1.4.1",
"multer": "^1.4.5-lts.1",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/multer": "^1.4.7",
"@types/node": "^18.0.1",
"@types/serve-favicon": "^2.5.3"
}
}
|