mirror of
https://github.com/TheodoreKrypton/tgfs
synced 2024-11-21 14:41:40 +00:00
58 lines
1.4 KiB
JSON
58 lines
1.4 KiB
JSON
{
|
|
"name": "tgfs",
|
|
"version": "1.0.20",
|
|
"description": "Use telegram as file storage",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "tsc && tsc-alias",
|
|
"prepublishOnly": "yarn build",
|
|
"start": "yarn build && node dist/src/index.js",
|
|
"start:prod": "node dist/src/index.js",
|
|
"test": "yarn jest",
|
|
"test:cov": "yarn jest --coverage"
|
|
},
|
|
"author": "Wheat Carrier",
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"chokidar": "^3.6.0",
|
|
"dotenv": "^16.3.1",
|
|
"express": "^4.19.2",
|
|
"input": "^1.0.1",
|
|
"js-yaml": "^4.1.0",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"telegraf": "^4.15.0",
|
|
"telegram": "^2.25.4",
|
|
"uuid": "^9.0.0",
|
|
"webdav-server": "^2.6.2",
|
|
"yargs": "^17.7.2"
|
|
},
|
|
"devDependencies": {
|
|
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
|
|
"@types/express": "^4.17.17",
|
|
"@types/ip": "^1.1.0",
|
|
"@types/jest": "^29.5.2",
|
|
"@types/js-yaml": "^4.0.5",
|
|
"@types/jsonwebtoken": "^9.0.6",
|
|
"@types/node": "^20.3.3",
|
|
"@types/supertest": "^2.0.12",
|
|
"@types/uuid": "^9.0.2",
|
|
"@types/yargs": "^17.0.24",
|
|
"jest": "^29.6.0",
|
|
"prettier": "^3.0.2",
|
|
"supertest": "^6.3.3",
|
|
"ts-jest": "^29.1.1",
|
|
"ts-node": "^10.9.1",
|
|
"tsc-alias": "^1.8.7",
|
|
"typescript": "^5.1.6"
|
|
},
|
|
"pkg": {
|
|
"scripts": "./dist/src/index.js"
|
|
},
|
|
"bin": {
|
|
"tgfs": "./dist/src/index.js"
|
|
},
|
|
"files": [
|
|
"./dist"
|
|
]
|
|
}
|