Created
January 26, 2023 08:40
-
-
Save meanii/714bd9315da50ea146d24344494ded74 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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": "[email protected] <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" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"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