-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.5 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
{
"name": "@zioladev/execution-control",
"version": "0.1.0",
"description": "A neutral seam for mediating state-changing tool execution: a runtime proposes a consequential execution, an opaque external authority returns allow / block / indeterminate, and only allow may reach the provider. Defines the seam, not how any authority decides.",
"keywords": [
"webmcp",
"model-context",
"mcp",
"interoperability",
"execution-control",
"mediation",
"agent",
"tool-execution",
"typescript"
],
"license": "Apache-2.0",
"author": "Ziola",
"homepage": "https://github.com/zioladev/execution-control#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/zioladev/execution-control.git"
},
"bugs": {
"url": "https://github.com/zioladev/execution-control/issues"
},
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"LICENSE",
"NOTICE",
"README.md"
],
"sideEffects": false,
"engines": {
"node": ">=22.6"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "node --experimental-strip-types --test tests/*.test.ts"
},
"devDependencies": {
"typescript": "^5.9.0"
},
"dependencies": {},
"publishConfig": {
"access": "public",
"provenance": true
}
}