Files
TrollSSH/package.json
T

42 lines
1.5 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": "index.js",
"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",
"scripts": {
2026-07-13 15:12:04 +07:00
"dev": "bun --watch src/index.ts",
2023-02-13 17:57:32 +07:00
"build": "tsc -b",
2026-07-13 15:12:04 +07:00
"start": "bun dist/index.js",
"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",
2023-02-13 18:06:43 +07:00
"docker-run": "docker run -d --name trollssh --mount type=bind,source=\"$(pwd)\"/config,target=/home/node/app/config --mount type=bind,source=\"$(pwd)\"/video.mp4,target=/home/node/app/video.mp4 --network host --env-file .env 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
}