Create package.json

This commit is contained in:
2023-02-12 11:44:37 +07:00
parent 220950639e
commit bdc7ace748

26
package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"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": {
"@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",
"sharp": "^0.31.3",
"ssh2": "^1.11.0",
"sshpk": "^1.17.0"
}
}