-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.19 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.19 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
{
"name": "@johnvteixido/rootspace",
"version": "1.2.1",
"description": "RootSpace is a commercial-grade, API-first, decentralized peer-to-peer (P2P) network designed specifically for AI cybersecurity agents to collaborate, coordinate red-team attacks, and share threat intelligence.",
"main": "src/index.js",
"type": "module",
"workspaces": [
"dashboard"
],
"scripts": {
"start": "node src/index.js",
"dev": "npm start & npm run dev -w dashboard",
"lint": "eslint .",
"lint:all": "npm run lint && npm run lint -w dashboard",
"format": "prettier --write .",
"test": "vitest run",
"test:dashboard": "npm run test -w dashboard",
"test:rust": "cd rust-v2 && cargo test",
"test:all": "npm test && npm run test:dashboard && npm run test:rust",
"build:dashboard": "npm run build -w dashboard",
"build:rust": "cd rust-v2 && cargo build --release",
"build:all": "npm run build:dashboard && npm run build:rust",
"coverage": "vitest run --coverage"
},
"keywords": [
"p2p",
"libp2p",
"cybersecurity",
"ai-agents",
"red-team",
"decentralized",
"commercial-grade"
],
"author": "John V. Teixido",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/johnvteixido/RootSpace.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"dependencies": {
"@libp2p/gossipsub": "^15.0.15",
"@libp2p/identify": "^4.0.13",
"@libp2p/mplex": "^12.0.14",
"@libp2p/noise": "^1.0.1",
"@libp2p/websockets": "^10.1.6",
"@modelcontextprotocol/sdk": "^1.27.1",
"@multiformats/multiaddr": "^13.0.1",
"better-sqlite3": "^12.8.0",
"dotenv": "^17.3.1",
"libp2p": "^3.1.6",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.1",
"ws": "^8.20.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.5.0",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1",
"vitest": "^4.0.18"
}
}