-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.37 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.37 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
{
"name": "@jaydenbeard/clawguard",
"version": "0.4.1",
"description": "Activity monitor and security dashboard for OpenClaw/OpenClaw - real-time analytics, risk analysis, and kill switch",
"type": "module",
"main": "src/server.js",
"bin": {
"clawguard": "bin/clawguard.js"
},
"scripts": {
"start": "node src/server.js",
"dev": "node --watch src/server.js",
"lint": "eslint src/ bin/",
"lint:fix": "eslint src/ bin/ --fix",
"format": "prettier --write 'src/**/*.js' 'bin/**/*.js'",
"format:check": "prettier --check 'src/**/*.js' 'bin/**/*.js'",
"check": "node scripts/check-syntax.js",
"test": "node --test tests/api.test.js"
},
"dependencies": {
"chokidar": "^3.5.3",
"express": "^4.18.2",
"ws": "^8.16.0"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"clawdbot",
"openclaw",
"ai-agent",
"security",
"monitoring",
"audit",
"dashboard",
"analytics"
],
"repository": {
"type": "git",
"url": "git+https://github.com/JaydenBeard/clawguard.git"
},
"bugs": {
"url": "https://github.com/JaydenBeard/clawguard/issues"
},
"homepage": "https://github.com/JaydenBeard/clawguard#readme",
"author": "Jayden Beard",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"globals": "^17.3.0",
"prettier": "^3.8.1"
}
}