Files
TrollSSH/package.json

29 lines
711 B
JSON
Raw Normal View History

2023-02-12 11:44:37 +07:00
{
"name": "trollssh",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/YuzuZensai/TrollSSH.git",
"author": "Yuzu | ユズ ♡ <yuzu@kirameki.cafe>",
"license": "GPL-3.0",
"scripts": {
"build": "tsc",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts"
},
"devDependencies": {
2023-02-12 13:25:59 +07:00
"@types/fluent-ffmpeg": "^2.1.20",
2023-02-12 11:44:37 +07:00
"@types/node": "^18.13.0",
"@types/sharp": "^0.31.1",
"@types/ssh2": "^1.11.7",
"@types/sshpk": "^1.17.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
},
"dependencies": {
"dotenv": "^16.0.3",
2023-02-12 13:25:59 +07:00
"fluent-ffmpeg": "^2.1.2",
2023-02-12 11:44:37 +07:00
"sharp": "^0.31.3",
"ssh2": "^1.11.0",
"sshpk": "^1.17.0"
}
}