-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.63 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.63 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
{
"name": "@razroo/iso-capabilities",
"version": "0.1.0",
"description": "Deterministic role capability policies for AI-agent workflows: resolve, check, and render tool/MCP/filesystem permissions without model calls.",
"license": "MIT",
"type": "module",
"sideEffects": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"iso-capabilities": "dist/cli.js"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"examples",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rm -rf dist",
"dev": "tsc -p tsconfig.json --watch",
"test": "node --test --import tsx tests/*.test.ts",
"typecheck": "tsc -p tsconfig.json --noEmit",
"ci": "npm run typecheck && npm test",
"release:check-source": "node ./scripts/release/check-source.mjs",
"prepublishOnly": "npm run clean && npm run build && npm test"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^22.10.0",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
},
"engines": {
"node": ">=20.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/razroo/iso.git",
"directory": "packages/iso-capabilities"
},
"homepage": "https://github.com/razroo/iso/tree/main/packages/iso-capabilities#readme",
"bugs": {
"url": "https://github.com/razroo/iso/issues"
},
"keywords": [
"agent",
"capabilities",
"permissions",
"policy",
"tools",
"mcp",
"workflow",
"harness",
"ai",
"coding-agent",
"claude-code",
"cursor",
"codex",
"opencode"
],
"publishConfig": {
"access": "public"
}
}