-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.78 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.78 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
{
"name": "openclaw-inspector",
"version": "1.0.1",
"description": "Review every conversation your OpenClaw agent has ever had — including deleted sessions — and flag dangerous actions it may have taken without your knowledge.",
"main": "server.js",
"bin": {
"openclaw-inspector": "server.js"
},
"files": [
"dist/",
"server.js",
"danger-rules.json",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "portless inspector vite",
"dev:api": "node server.js",
"dev:full": "node server.js & portless inspector vite",
"build": "vite build",
"preview": "vite preview",
"start": "node server.js",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "cypress run",
"test:e2e:open": "cypress open",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukavyi-consulting/openclaw-inspector.git"
},
"keywords": [
"openclaw",
"clawdbot",
"inspector",
"session-viewer",
"security",
"audit",
"ai-agent",
"cli"
],
"author": "Taras Lukavyi",
"license": "MIT",
"type": "module",
"bugs": {
"url": "https://github.com/lukavyi-consulting/openclaw-inspector/issues"
},
"homepage": "https://github.com/lukavyi-consulting/openclaw-inspector#readme",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"cypress": "^15.9.0",
"jsdom": "^27.4.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"dependencies": {
"react-virtuoso": "^4.18.1"
}
}