-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.61 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.61 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
73
{
"name": "@centrase/guardclaw",
"version": "1.4.3",
"description": "Privacy-aware OpenClaw plugin with S1/S2/S3 sensitivity detection, local processing, and guard agent support. Built by Centrase AI.",
"type": "module",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@sinclair/typebox": "0.34.48",
"synckit": "^0.11.12",
"tsx": "^4.21.0"
},
"openclaw": {
"extensions": [
"./dist/index.js"
]
},
"devDependencies": {
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"overrides": {
"picomatch": ">=4.0.4"
},
"author": {
"name": "Centrase AI",
"email": "hello@centrase.com",
"url": "https://centrase.com"
},
"homepage": "https://github.com/list3r/guardclaw-openclaw-plugin#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/list3r/guardclaw-openclaw-plugin.git"
},
"bugs": {
"url": "https://github.com/list3r/guardclaw-openclaw-plugin/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"openclaw",
"openclaw-plugin",
"privacy",
"pii-detection",
"sensitivity-classification",
"guard-agent",
"local-model",
"edge-ai",
"s1-s2-s3",
"centrase"
],
"files": [
"dist/",
"prompts/",
"openclaw.plugin.json",
"config.example.json",
"README.md",
"LICENSE",
"NOTICE"
]
}