-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 769 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 769 Bytes
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
{
"name": "rinnegan",
"version": "0.1.0",
"description": "Self-contained, self-hosted password-protected web terminal with host file transfer and port tunnelling; distributed as per-platform tarballs bundling their own Node runtime.",
"type": "module",
"private": true,
"license": "MIT",
"bin": {
"rinnegan": "bin/rinnegan.js"
},
"engines": {
"node": ">=24"
},
"scripts": {
"start": "node bin/rinnegan.js serve",
"dev": "node --watch bin/rinnegan.js serve",
"test": "node --test test/*.test.js"
},
"files": [
"bin",
"src",
"public"
],
"dependencies": {
"@fontsource/inter": "^5.3.0",
"@xterm/addon-webgl": "^0.19.0",
"@xterm/xterm": "^6.0.0",
"node-pty": "^1.1.0",
"ws": "^8.21.1"
}
}