-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.12 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.12 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
74
75
{
"name": "@senad-d/guardme",
"version": "0.2.1",
"type": "module",
"description": "Deny-first Pi guardrails that keep LLM shell and file access safe, transparent, and user-approved.",
"license": "MIT",
"author": "Senad Dizdarević <112484166+senad-d@users.noreply.github.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/senad-d/GuardMe.git"
},
"bugs": {
"url": "https://github.com/senad-d/GuardMe/issues"
},
"homepage": "https://github.com/senad-d/GuardMe#readme",
"keywords": [
"pi-package",
"pi-extension",
"pi-coding-agent",
"guardme",
"llm-security",
"ai-safety",
"agent-safety",
"tool-guardrails",
"deny-first",
"iam-like-policy",
"access-control",
"policy-engine",
"approval-workflow",
"shell-security",
"filesystem-security",
"typescript"
],
"engines": {
"node": ">=22.19.0"
},
"files": [
"README.md",
"LICENSE",
"SECURITY.md",
"CHANGELOG.md",
"docs/**/*.md",
"src/**/*.ts",
"tsconfig.json"
],
"scripts": {
"dev": "pi --no-extensions -e .",
"typecheck": "tsc --noEmit",
"lint": "npm run typecheck && npm run check",
"format:check": "node scripts/check-format.mjs",
"test": "node --test test/*.test.mjs",
"coverage": "node scripts/coverage.mjs",
"test:e2e:rpc": "node --test test/e2e/guardme-rpc.e2e.mjs",
"test:e2e:tui": "node --test test/e2e/guardme-tui-capture.e2e.mjs",
"test:e2e": "npm run test:e2e:rpc && npm run test:e2e:tui",
"check": "node --check scripts/check-package-contents.mjs",
"pack:dry-run": "npm pack --dry-run --json",
"check:pack": "node scripts/check-package-contents.mjs",
"validate": "npm run typecheck && npm run test && npm run check && npm run check:pack"
},
"pi": {
"extensions": [
"./src/extension.ts"
],
"image": "https://raw.githubusercontent.com/senad-d/GuardMe/main/img/demo.gif"
},
"peerDependencies": {
"@earendil-works/pi-coding-agent": "*"
},
"devDependencies": {
"@earendil-works/pi-coding-agent": "^0.80.2",
"@types/node": "^26.0.0",
"typescript": "^7.0.2"
}
}