-
Notifications
You must be signed in to change notification settings - Fork 673
/
package.json
184 lines (184 loc) · 6.44 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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
{
"name": "wetty",
"version": "2.7.0",
"description": "WeTTY = Web + TTY. Terminal access in browser over http/https",
"homepage": "https://github.com/butlerx/wetty",
"license": "MIT",
"type": "module",
"bin": "./build/main.js",
"main": "./build/main.js",
"exports": "./build/server.js",
"files": [
"build/",
"conf/"
],
"scripts": {
"build": "node build.js",
"clean": "rm -rf build",
"contributor": "all-contributors",
"dev": "NODE_ENV=development concurrently --kill-others --raw --success first \"pnpm build --watch\" \"nodemon -w build -i build/client -w conf/config.json5 --delay 200ms . -- --conf conf/config.json5\"",
"docker-compose-entrypoint": "ssh-keyscan -H wetty-ssh >> ~/.ssh/known_hosts; pnpm start",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"start": "NODE_ENV=production node .",
"test": "mocha",
"prepare": "husky install"
},
"repository": "git://github.com/butlerx/wetty.git",
"author": "Cian Butler <[email protected]> (cianbutler.ie)",
"bugs": {
"url": "https://github.com/butlerx/wetty/issues"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix"
],
"*.{json,scss,md}": [
"prettier --write"
]
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.2",
"@fortawesome/free-solid-svg-icons": "^6.1.2",
"compression": "^1.7.4",
"etag": "^1.8.1",
"express": "^4.17.1",
"express-winston": "^4.0.5",
"file-type": "^12.3.0",
"find-up": "^5.0.0",
"fresh": "^0.5.2",
"fs-extra": "^9.0.1",
"gc-stats": "^1.4.0",
"helmet": "^4.1.0",
"json5": "^2.1.3",
"lodash": "^4.17.20",
"node-gyp": "^9.1.0",
"node-pty": "^0.10.0",
"parseurl": "^1.3.3",
"prom-client": "^14.0.1",
"response-time": "^2.3.2",
"sass": "^1.54.4",
"serve-static": "^1.15.0",
"socket.io": "^4.5.1",
"socket.io-client": "^4.5.1",
"toastify-js": "^1.9.1",
"url-value-parser": "^2.1.0",
"winston": "^3.3.3",
"xterm": "^5.2.0",
"xterm-addon-fit": "^0.7.0",
"xterm-addon-image": "^0.5.0",
"xterm-addon-web-links": "^0.8.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@snowpack/plugin-run-script": "^2.3.0",
"@types/chai": "^4.3.1",
"@types/compression": "^1.7.0",
"@types/etag": "^1.8.0",
"@types/express": "^4.17.8",
"@types/fresh": "^0.5.0",
"@types/fs-extra": "^9.0.1",
"@types/gc-stats": "^1",
"@types/helmet": "^0.0.48",
"@types/jsdom": "^12.2.4",
"@types/lodash": "^4.14.161",
"@types/mocha": "^9.1.1",
"@types/morgan": "^1.7.37",
"@types/node": "^20.2.6",
"@types/parseurl": "^1.3.1",
"@types/response-time": "^2",
"@types/serve-static": "^1.15.3",
"@types/sinon": "^10.0.13",
"@types/toastify-js": "^1.9.2",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"all-contributors-cli": "^6.17.2",
"chai": "^4.3.6",
"concurrently": "^8.2.2",
"esbuild": "^0.21.5",
"esbuild-plugin-copy": "^2.1.1",
"esbuild-sass-plugin": "^3.3.1",
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "latest",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.4.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-prettier": "^4.2.1",
"git-authors-cli": "^1.0.42",
"husky": "^9.0.11",
"jsdom": "^16.5.0",
"lint-staged": "^13.2.2",
"mocha": "^10.0.0",
"nodemon": "^3.1.4",
"prettier": "^2.5.1",
"sinon": "^14.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"contributors": [
"butlerx <[email protected]>",
"Krishna Srinivas <[email protected]>",
"userdocs <[email protected]>",
"Boyan Rabchev <[email protected]>",
"Ben Letchford <[email protected]>",
"Antonio Calatrava <[email protected]>",
"Strubbl <[email protected]>",
"Oleg Kurapov <[email protected]>",
"Anthony Jund <[email protected]>",
"Kyle Lucy <[email protected]>",
"Luca Milanesio <[email protected]>",
"nosemeocurrenada <[email protected]>",
"cbutler <[email protected]>",
"Henri <[email protected]>",
"Imuli <[email protected]>",
"Janos Kasza <[email protected]>",
"mirtouf <[email protected]>",
"Koushik M.L.N <[email protected]>",
"Denis Kramer <[email protected]>",
"Harrison Pace <[email protected]>",
"Jarrett Gilliam <[email protected]>",
"Nathan LeClaire <[email protected]>",
"SouraDutta <[email protected]>",
"Aayush Garg-gamer1478 <[email protected]>",
"Bertrand Roussel <[email protected]>",
"Christian7573 <[email protected]>",
"Dean Shub <[email protected]>",
"Dmytri Kleiner <[email protected]>",
"Felix Bartels <[email protected]>",
"Felix Pojtinger <[email protected]>",
"Josua Frank <[email protected]>",
"Georgelemental <[email protected]>",
"Loz Brown <[email protected]>",
"Grant Handy <[email protected]>",
"harryleesan <[email protected]>",
"Andreas Kloeckner <[email protected]>",
"James Turnbull <[email protected]>",
"Arturo R <[email protected]>",
"Josh Samuelson <[email protected]>",
"Jurre Vriesen <[email protected]>",
"Kevin <[email protected]>",
"Farhan Khan <[email protected]>",
"Kasper Holbek Jensen <[email protected]>",
"Krzysztof Suszyński <[email protected]>",
"justluk <[email protected]>",
"Mathieu Geli <[email protected]>",
"Mihir Kumar <[email protected]>",
"Neale Pickett <[email protected]>",
"pablo-zarate <[email protected]>",
"Matthew Piercey <[email protected]>",
"Alex Cline <[email protected]>",
"Robert <[email protected]>",
"Sergei Ratnikov <[email protected]>",
"Shimi <[email protected]>",
"Sven Fischer <[email protected]>",
"Taha <[email protected]>",
"Tri Nguyen <[email protected]>",
"Vamshi K Ponnapalli <[email protected]>"
],
"packageManager": "[email protected]+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a"
}