tgfs/package.json
2023-08-03 17:30:51 +08:00

47 lines
1.1 KiB
JSON

{
"name": "tgfs",
"version": "1.0.0",
"description": "Use telegram as file storage",
"main": "index.js",
"scripts": {
"build": "tsc -p tsconfig.json",
"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": {
"dotenv": "^16.3.1",
"express": "^4.18.2",
"input": "^1.0.1",
"js-yaml": "^4.1.0",
"telegram": "^2.17.10",
"uuid": "^9.0.0",
"webdav-server": "^2.6.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/js-yaml": "^4.0.5",
"@types/node": "^20.3.3",
"@types/uuid": "^9.0.2",
"@types/yargs": "^17.0.24",
"jest": "^29.6.0",
"module-alias": "^2.2.3",
"prettier": "^2.8.8",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"pkg": {
"scripts": "./dist/src/index.js"
},
"bin": {
"tgfs": "./dist/src/index.js"
}
}