-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 3.75 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 3.75 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "@kya-os/mcp",
"version": "1.6.0",
"description": "Reference implementation of the KYA-OS protocol for Model Context Protocol servers: delegation, proof, and session primitives",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./delegation": {
"types": "./dist/delegation/index.d.ts",
"default": "./dist/delegation/index.js"
},
"./auth": {
"types": "./dist/auth/index.d.ts",
"default": "./dist/auth/index.js"
},
"./proof": {
"types": "./dist/proof/index.d.ts",
"default": "./dist/proof/index.js"
},
"./session": {
"types": "./dist/session/index.d.ts",
"default": "./dist/session/index.js"
},
"./providers": {
"types": "./dist/providers/index.d.ts",
"default": "./dist/providers/index.js"
},
"./logging": {
"types": "./dist/logging/index.d.ts",
"default": "./dist/logging/index.js"
},
"./types": {
"types": "./dist/types/protocol.d.ts",
"default": "./dist/types/protocol.js"
},
"./middleware": {
"types": "./dist/middleware/index.d.ts",
"default": "./dist/middleware/index.js"
},
"./policy": {
"types": "./dist/policy/index.d.ts",
"default": "./dist/policy/index.js"
},
"./authz": {
"types": "./dist/authz/index.d.ts",
"default": "./dist/authz/index.js"
},
"./schemas/*.json": "./schemas/*.json",
"./package.json": "./package.json"
},
"files": [
"dist",
"schemas",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build && npm run test",
"demo": "bash scripts/demo.sh",
"example:server": "npx tsx examples/node-server/server.ts",
"example:inspector": "npx @modelcontextprotocol/inspector npx tsx examples/node-server/server.ts --stdio",
"example:verify-proof": "npx tsx examples/verify-proof/verify.ts",
"example:anti-mitm": "npx tsx examples/verify-proof/anti-mitm-demo.ts",
"example:authz-inspector": "npx @modelcontextprotocol/inspector npx tsx examples/authz-inspector/src/stdio.ts",
"example:authz-inspector:http": "npx tsx examples/authz-inspector/src/inspector-http.ts",
"example:authz-inspector:http:server": "npx tsx examples/authz-inspector/src/http.ts",
"example:authz-inspector:stdio:server": "npx tsx examples/authz-inspector/src/stdio.ts"
},
"dependencies": {
"jose": "^5.6.3",
"json-canonicalize": "^2.0.0",
"zod": "^4.3.6"
},
"peerDependencies": {
"@modelcontextprotocol/sdk": ">=1.0.0"
},
"peerDependenciesMeta": {
"@modelcontextprotocol/sdk": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@kya-os/consent": "^0.1.37",
"@modelcontextprotocol/sdk": "^1.12.1",
"@types/express": "^5.0.6",
"@types/node": "^20.14.9",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"@vitest/coverage-v8": "^2.0.0",
"commander": "^14.0.3",
"eslint": "^10.0.3",
"express": "^5.2.1",
"typescript": "^5.5.3",
"typescript-eslint": "^8.57.0",
"vitest": "^2.0.0"
},
"keywords": [
"kya-os",
"mcp",
"delegation",
"verifiable-credentials",
"did",
"protocol",
"identity",
"dif"
],
"repository": {
"type": "git",
"url": "https://github.com/decentralized-identity/kya-os-mcp"
},
"publishConfig": {
"access": "public"
}
}