-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.48 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.48 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
{
"name": "guardmesh",
"version": "0.1.0-alpha.1",
"description": "Portable policy evaluation for bounded agent actions.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"bin": {
"guardmesh": "dist/cli.js"
},
"files": [
"dist",
"docs",
"examples",
"schemas",
"CONTRACT.md",
"CONTRIBUTING.md",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"SECURITY.md",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/cli.ts",
"start": "node dist/cli.js",
"test": "node --import tsx --test tests/*.test.ts",
"lint": "node --import tsx ./scripts/verify-examples.ts --mode=lint",
"schema:examples": "node --import tsx ./scripts/verify-examples.ts --mode=schema",
"verify:examples": "node --import tsx ./scripts/verify-examples.ts --mode=all",
"release:dry-run": "npm pack --dry-run",
"check": "npm run build && npm run test && npm run lint && npm run schema:examples && npm run verify:examples",
"clean": "rm -rf dist"
},
"keywords": [
"ai-agents",
"policy",
"policy-engine",
"authorization",
"governance",
"agentic-ai",
"typescript",
"cli"
],
"license": "MIT",
"type": "commonjs",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@types/node": "^24.0.0",
"tsx": "^4.19.0",
"typescript": "^5.8.0"
},
"dependencies": {
"ajv": "^8.17.1",
"yaml": "^2.8.0"
}
}