-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
52 lines (52 loc) · 1.29 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
50
51
52
{
"name": "discord-ssh",
"version": "4.0.0",
"description": "Discord bot for using shell commands remotely through Discord",
"type": "module",
"scripts": {
"start": "tsx ./index.ts",
"dev": "tsx watch ./index.ts",
"format": "prettier . --write --ignore-unknown --cache",
"format:check": "prettier . --check --cache",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"chalk": "5.4.1",
"discord.js": "14.17.3",
"dotenv": "16.4.7",
"strip-ansi": "7.1.0",
"systeminformation": "5.25.9"
},
"devDependencies": {
"@igorkowalczyk/eslint-config": "2.2.0",
"@igorkowalczyk/prettier-config": "2.2.0",
"@types/node": "22.10.5",
"eslint": "9.17.0",
"prettier": "3.4.2",
"tsx": "4.19.2",
"typescript": "5.7.3"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IgorKowalczyk/discord-ssh.git"
},
"author": "Igor Kowalczyk",
"license": "MIT",
"bugs": {
"url": "https://github.com/IgorKowalczyk/discord-ssh/issues"
},
"homepage": "https://github.com/IgorKowalczyk/discord-ssh#readme",
"keywords": [
"discord",
"node-js",
"discord",
"discord-ssh",
"ssh",
"remote-connection"
],
"packageManager": "[email protected]"
}