Skip to content

Instantly share code, notes, and snippets.

@meanii
Created January 26, 2023 08:40
Show Gist options
  • Save meanii/714bd9315da50ea146d24344494ded74 to your computer and use it in GitHub Desktop.
Save meanii/714bd9315da50ea146d24344494ded74 to your computer and use it in GitHub Desktop.
{
"name": "touka.ssh",
"description": "> touka.ssh is an ssh manager that allows you to manage all of your VPSs without keeping your password.",
"version": "0.0.5",
"main": "index.ts",
"scripts": {
"start": "tsc && node dist/app.js",
"dev": "nodemon src/index.ts",
"build": "tsc -p ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/meanii/touka.ssh.git"
},
"keywords": [
"touka.ssh",
"meanii",
"ssh",
"ssh-manager"
],
"author": "anilchauhanxda@gmail.com <https://github.com/meanii>",
"license": "ISC",
"bugs": {
"url": "https://github.com/meanii/touka.ssh/issues"
},
"homepage": "https://github.com/meanii/touka.ssh#readme",
"devDependencies": {
"nodemon": "^2.0.20",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@types/node": "^18.11.18"
}
}
{
"compilerOptions": {
"target": "ES2017",
"module": "CommonJS",
"lib": ["dom", "es6", "es2017", "esnext.asynciterable"],
"sourceMap": false,
"outDir": "dist",
"rootDir": "src",
"strict": true,
"types": ["node"],
"esModuleInterop": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"baseUrl": ".",
"allowSyntheticDefaultImports": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"removeComments": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment