-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.75 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.75 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
{
"name": "@cipher.sys/terminal",
"version": "5.0.2",
"description": "Autonomous Covert Terminal. Max 5 directives. Scorched earth protocol. V4 Phoenix.",
"main": "server.js",
"bin": {
"cipher": "bin/cipher.js",
"terminal": "bin/cipher.js"
},
"files": [
"bin/",
"dist/",
"mcp/",
"utils/",
"scripts/postinstall.js",
"server.js",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"start": "node server.js",
"up": "node bin/cipher.js up",
"stop": "node bin/cipher.js stop",
"status": "node bin/cipher.js status",
"mcp:start": "node mcp/server.js",
"build": "vite build",
"test": "node --test tests/cli-up-mode.test.js tests/discovery-mdns.test.js",
"smoke:multidevice": "node scripts/smoke/multidevice-sync.js",
"prepack": "npm run build",
"postinstall": "node scripts/postinstall.js",
"docs:install": "pip install -r requirements.txt",
"docs:serve": "mkdocs serve",
"docs:build": "mkdocs build",
"docs:deploy": "mkdocs gh-deploy"
},
"author": "adarsh.agrahari26 <adarsh.agrahari26@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/sir-ad/cipher.sys.git"
},
"bugs": {
"url": "https://github.com/sir-ad/cipher.sys/issues"
},
"dependencies": {
"express": "^4.18.2",
"multicast-dns": "^7.2.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"socket.io": "^4.7.2",
"socket.io-client": "^4.7.2",
"open": "^9.1.0"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.4",
"typescript": "^5.7.2",
"vite": "^6.0.3"
},
"publishConfig": {
"access": "public"
}
}