-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.72 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.72 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "discos",
"version": "2.0.6",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "npm run lint && rm -f tsconfig.tsbuildinfo && npx tsc -b",
"setup": "node dist/slash-commands.js",
"start": "node dist/startup.js",
"docker:build": "docker build -t discos:latest .",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"docker:prune": "docker system prune -a -f",
"release:docker": "node scripts/release-docker.js",
"release:npm": "rm -rf dist && rm -f tsconfig.tsbuildinfo && npm run build && npm publish --access public",
"release:all": "npm run release:npm && npm run release:docker",
"release:login": "docker login && npm login",
"pack": "rm -rf dist && rm -f tsconfig.tsbuildinfo && npm run build && npm pack",
"format": "prettier --write \"**/*.{ts,json,md}\" --log-level silent",
"lint": "eslint . --ext .ts --cache",
"safe": "git config core.hooksPath .husky",
"unsafe": "git config --unset core.hooksPath",
"test": "echo \"No tests specified.\" && exit 0"
},
"keywords": [
"discord",
"discord-bot",
"linux",
"server",
"bot",
"ssh",
"remote-control",
"terminal",
"commands",
"remote",
"interaction",
"control",
"file",
"transfer"
],
"author": "Barni <szocsbarnabas8@gmail.com> (https://github.com/BrNi05)",
"license": "Apache-2.0",
"description": "DiscOS is a secure interaction bridge between Discord and Linux servers",
"repository": {
"type": "git",
"url": "git+https://github.com/BrNi05/DiscOS.git"
},
"homepage": "https://github.com/BrNi05/DiscOS/wiki/01.-Home",
"bugs": {
"url": "https://github.com/BrNi05/DiscOS/issues"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"axios": "^1.18.0",
"discord.js": "^14.26.4",
"dotenv": "^17.4.2",
"file-type": "^22.0.1",
"node-pty": "^1.1.0-beta43",
"shell-escape": "^0.2.0",
"strip-ansi": "^7.2.0",
"winston": "^3.19.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.0.0",
"@types/shell-escape": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^8.61.1",
"@typescript-eslint/parser": "^8.61.1",
"@typescript-eslint/utils": "^8.61.1",
"eslint": "^10.5.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"globals": "^17.6.0",
"husky": "^9.1.7",
"jiti": "^2.7.0",
"prettier": "^3.8.4",
"ts-node": "^10.9.2",
"typescript": "^6.0.3"
},
"overrides": {
"undici": "^6.26.0"
},
"files": [
"dist",
"LICENSE",
"README.md",
".github/TERMS_OF_SERVICE.md",
".github/PRIVACY_POLICY.md",
"setup/install.sh"
]
}