-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 920 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 920 Bytes
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
{
"name": "policy-runtime-ts",
"version": "0.3.0",
"description": "Minimal policy runtime engine for agent treasury guardrails (allowlist, pause, caps, JSONL logging)",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"policy-simulate": "dist/cli/simulate.js",
"policy-status": "dist/cli/status.js"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config jest.config.cjs --passWithNoTests",
"test:type": "tsc -p tsconfig.jest.json",
"serve": "node examples/http_server.mjs",
"cli:simulate": "node dist/cli/simulate.js",
"cli:status": "node dist/cli/status.js"
},
"dependencies": {
"ajv": "^8.17.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2"
},
"license": "MIT"
}