Files
TrollSSH/package.json
T

43 lines
1.3 KiB
JSON
Raw Normal View History

2023-02-12 11:44:37 +07:00
{
2023-02-13 17:57:32 +07:00
"name": "trollssh",
"version": "1.0.0",
"main": "src/index.ts",
2023-02-13 17:57:32 +07:00
"repository": "https://github.com/YuzuZensai/TrollSSH.git",
2026-07-13 15:12:04 +07:00
"author": "Yuzu <yuzu@kirameki.cafe>",
2023-02-13 17:57:32 +07:00
"license": "GPL-3.0",
"engines": {
"bun": ">=1.2.0"
},
2023-02-13 17:57:32 +07:00
"scripts": {
2026-07-13 15:12:04 +07:00
"dev": "bun --watch src/index.ts",
"start": "bun src/index.ts",
2026-07-13 15:12:04 +07:00
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"test": "bun test",
2023-02-13 17:57:32 +07:00
"docker-build": "docker build . -t ghcr.io/yuzuzensai/trollssh:latest",
2026-07-13 15:12:04 +07:00
"docker-push": "docker push ghcr.io/yuzuzensai/trollssh:latest"
2023-02-13 17:57:32 +07:00
},
"devDependencies": {
2026-07-13 15:12:04 +07:00
"@eslint/js": "^10.0.1",
"@types/bun": "^1.3.14",
"@types/fluent-ffmpeg": "^2.1.28",
"@types/node": "^26.1.1",
2023-02-13 17:57:32 +07:00
"@types/sharp": "^0.31.1",
2026-07-13 15:12:04 +07:00
"@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"
2023-02-13 17:57:32 +07:00
},
"dependencies": {
2026-07-13 15:12:04 +07:00
"fluent-ffmpeg": "^2.1.3",
"sharp": "^0.35.3",
"ssh2": "^1.17.0",
"sshpk": "^1.18.0"
2023-02-13 17:57:32 +07:00
}
2023-02-12 11:44:37 +07:00
}