diff options
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 51 |
1 files changed, 34 insertions, 17 deletions
diff --git a/package.json b/package.json index dc3e76c..347e9b9 100644 --- a/package.json +++ b/package.json @@ -1,35 +1,52 @@ { - "name": "imafilehoster", - "displayName": "I'm a File hoster.", - "version": "1.0.0", - "description": "iLotterytea's File hoster using ExpressJS.", - "main": "index.ts", + "name": "@notdankenough/picbin", + "version": "1.1.0", + "description": "Simple web hoster for your pictures and other media files.", + "main": "index.js", "scripts": { - "start": "ts-node ./index.ts --standalone" + "test": "ts-node index.ts --debug", + "build": "tsc", + "init": "node dist/index.js --init", + "start": "node dist/index.js" }, "repository": { "type": "git", - "url": "git+https://github.com/notdankenough/fh.git" + "url": "git+https://github.com/notdankenough/picbin.git" }, - "author": "NotDankEnough <hatesociety@pm.me> (https://hmmtodayiwill.ru)", + "keywords": [ + "hoster", + "web", + "expressjs", + "pictures" + ], + "author": "NotDankEnough <hatesociety@pm.me> (https://hmmtodayiwill.ru/)", "license": "Apache-2.0", "bugs": { - "url": "https://github.com/notdankenough/fh/issues" + "url": "https://github.com/notdankenough/picbin/issues" }, - "homepage": "https://github.com/notdankenough/fh#readme", + "homepage": "https://github.com/notdankenough/picbin#readme", "dependencies": { - "chalk": "^4.1.2", - "commander": "^9.3.0", + "@prisma/client": "^4.2.1", + "@types/multer": "^1.4.7", + "axios": "^0.27.2", + "body-parser": "^1.20.0", + "commander": "^9.4.0", + "cookie-parser": "^1.4.6", + "ejs": "^3.1.8", "express": "^4.18.1", "fs": "^0.0.1-security", - "mime": "^1.4.1", + "ini": "^3.0.0", + "jquery": "^3.6.0", + "mime": "^3.0.0", "multer": "^1.4.5-lts.1", - "serve-favicon": "^2.5.0" + "tslog": "^3.3.3" }, "devDependencies": { + "@types/body-parser": "^1.19.2", + "@types/commander": "^2.12.2", + "@types/cookie-parser": "^1.4.3", "@types/express": "^4.17.13", - "@types/multer": "^1.4.7", - "@types/node": "^18.0.1", - "@types/serve-favicon": "^2.5.3" + "@types/ini": "^1.3.31", + "prisma": "^4.2.1" } } |
