safeclaw 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,69 @@
1
+ {
2
+ "name": "safeclaw",
3
+ "version": "0.1.0",
4
+ "description": "Security management dashboard for AI agents – intercept, monitor, and control what AI agents can do on your system",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "main": "./dist/main.js",
8
+ "bin": {
9
+ "safeclaw": "./bin/safeclaw.js"
10
+ },
11
+ "keywords": [
12
+ "ai",
13
+ "security",
14
+ "agent",
15
+ "monitoring",
16
+ "dashboard",
17
+ "firewall",
18
+ "interception",
19
+ "access-control",
20
+ "threat-detection",
21
+ "cli"
22
+ ],
23
+ "homepage": "https://safeclaw.io",
24
+ "engines": {
25
+ "node": ">=20.0.0"
26
+ },
27
+ "scripts": {
28
+ "build:web": "pnpm --filter @safeclaw/web build && cp -r ../web/dist/* ./public/",
29
+ "build": "tsup",
30
+ "dev": "tsx watch src/main.ts start",
31
+ "typecheck": "tsc --noEmit",
32
+ "db:push": "drizzle-kit push",
33
+ "db:studio": "drizzle-kit studio",
34
+ "test": "vitest run",
35
+ "test:watch": "vitest"
36
+ },
37
+ "dependencies": {
38
+ "@fastify/cors": "^10.0.0",
39
+ "@fastify/static": "^8.0.0",
40
+ "better-sqlite3": "^11.7.0",
41
+ "commander": "^13.0.0",
42
+ "drizzle-orm": "^0.38.0",
43
+ "fastify": "^5.2.0",
44
+ "open": "^10.1.0",
45
+ "picocolors": "^1.1.0",
46
+ "pino": "^9.6.0",
47
+ "pino-pretty": "^13.0.0",
48
+ "socket.io": "^4.8.0",
49
+ "ws": "^8.19.0",
50
+ "zod": "^3.24.0"
51
+ },
52
+ "devDependencies": {
53
+ "@safeclaw/shared": "workspace:*",
54
+ "@types/better-sqlite3": "^7.6.0",
55
+ "@types/node": "^22.0.0",
56
+ "@types/ws": "^8.18.1",
57
+ "drizzle-kit": "^0.30.0",
58
+ "tsup": "^8.5.1",
59
+ "tsx": "^4.19.0",
60
+ "typescript": "^5.7.0",
61
+ "vitest": "^4.0.18"
62
+ },
63
+ "files": [
64
+ "dist/main.js",
65
+ "bin",
66
+ "public",
67
+ "!public/.gitkeep"
68
+ ]
69
+ }
Binary file