mirror of
https://github.com/YuzuZensai/TrollSSH.git
synced 2026-09-13 16:59:03 +00:00
43 lines
1.3 KiB
JSON
43 lines
1.3 KiB
JSON
{
|
|
"name": "trollssh",
|
|
"version": "1.0.0",
|
|
"main": "src/index.ts",
|
|
"repository": "https://github.com/YuzuZensai/TrollSSH.git",
|
|
"author": "Yuzu <yuzu@kirameki.cafe>",
|
|
"license": "GPL-3.0",
|
|
"engines": {
|
|
"bun": ">=1.2.0"
|
|
},
|
|
"scripts": {
|
|
"dev": "bun --watch src/index.ts",
|
|
"start": "bun src/index.ts",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "eslint .",
|
|
"format": "prettier --check .",
|
|
"format:fix": "prettier --write .",
|
|
"test": "bun test",
|
|
"docker-build": "docker build . -t ghcr.io/yuzuzensai/trollssh:latest",
|
|
"docker-push": "docker push ghcr.io/yuzuzensai/trollssh:latest"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^10.0.1",
|
|
"@types/bun": "^1.3.14",
|
|
"@types/fluent-ffmpeg": "^2.1.28",
|
|
"@types/node": "^26.1.1",
|
|
"@types/sharp": "^0.31.1",
|
|
"@types/ssh2": "^1.15.5",
|
|
"@types/sshpk": "^1.17.5",
|
|
"eslint": "^10.7.0",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"prettier": "^3.9.5",
|
|
"typescript": "6.0.3",
|
|
"typescript-eslint": "^8.63.0"
|
|
},
|
|
"dependencies": {
|
|
"fluent-ffmpeg": "^2.1.3",
|
|
"sharp": "^0.35.3",
|
|
"ssh2": "^1.17.0",
|
|
"sshpk": "^1.18.0"
|
|
}
|
|
}
|