-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.37 KB
/
package.json
File metadata and controls
52 lines (52 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
{
"name": "@kilocode/shell-security",
"version": "0.2.4",
"type": "module",
"license": "MIT",
"description": "Security analysis plugin for OpenClaw instances, powered by KiloCode",
"keywords": [
"openclaw",
"kiloclaw",
"kilocode",
"shell",
"security"
],
"//": "private: true is intentional — safety net against accidental `npm publish`. The publish script (script/publish.ts) strips this flag before packing and restores it after. Do NOT remove this without also having the publish pipeline in place.",
"private": true,
"main": "index.ts",
"openclaw": {
"extensions": [
"./index.ts"
],
"compat": {
"pluginApi": ">=2026.3.24-beta.2"
}
},
"files": [
"index.ts",
"src",
"openclaw.plugin.json",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"typecheck": "tsc --noEmit",
"format": "prettier --write \"**/*.{ts,json,md,yml}\"",
"format:check": "prettier --check \"**/*.{ts,json,md,yml}\"",
"install-preflight": "bun run script/install-preflight.ts",
"scan": "bun run script/scan.ts",
"test": "bun test"
},
"devDependencies": {
"@types/bun": "^1.3.0",
"@types/node": "^22.0.0",
"prettier": "^3.3.0",
"typescript": "^5.3.0",
"zod": "^3.23.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Kilo-Org/shell-security"
}
}