-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.23 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "@mochen/qss",
"version": "3.0.1",
"description": "Manage your ssh connection with Qss",
"bin": {
"qss": "./dist/bin/qss.js"
},
"scripts": {
"compile": "tsc",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"prepublishOnly": "npm run lint && npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imochen/quick-ssh.git"
},
"keywords": [
"ssh",
"ssh manager",
"ssh without password",
"auto ssh"
],
"author": "mochen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/imochen/quick-ssh/issues"
},
"homepage": "https://github.com/imochen/quick-ssh#readme",
"dependencies": {
"@mochen/toolkit": "^0.1.3",
"dayjs": "^1.8.28",
"fs-extra": "^8.0.1",
"inquirer": "^6.5.2",
"os-locale": "^5.0.0",
"yargs": "^13.3.2"
},
"devDependencies": {
"@types/inquirer": "^8.2.1",
"@types/node": "^18.0.6",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"eslint": "^8.20.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"typescript": "^4.7.4"
}
}