-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.05 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.05 KB
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
{
"name": "ssh-process",
"version": "0.0.2",
"main": "src/index.js",
"author": "Neon <neon@saahild.com>",
"license": "MIT",
"description": "An ssh server which attaches to the node process",
"private": false,
"keywords": [
"ssh",
"process",
"node"
],
"engines": {
"node": ">=18.0.0"
},
"sponsor": {
"url": "https://ko-fi.com/saahil"
},
"scripts": {
"test": "jest",
"lint": "eslint .",
"prettify": "prettier-eslint --write \"**/*.js\"",
"precommit": "lint-staged"
},
"devDependencies": {
"eslint": "^8.0.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"prettier-eslint": "^16.3.0",
"prettier-eslint-cli": "^8.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/NeonGamerBot-QK/ssh-process.git"
},
"dependencies": {
"node-pty": "^1.0.0",
"ssh2": "^1.15.0"
}
}