forked from modelcontextprotocol/modelcontextprotocol
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1007 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 1007 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
{
"name": "@modelcontextprotocol/specification",
"private": true,
"version": "0.1.0",
"description": "Model Context Protocol specification and protocol schema",
"license": "MIT",
"author": "Anthropic, PBC (https://anthropic.com)",
"homepage": "https://modelcontextprotocol.io",
"bugs": "https://github.com/modelcontextprotocol/specification/issues",
"engines": {
"node": ">=20"
},
"scripts": {
"validate:schema": "tsc --noEmit schema/**/*.ts",
"generate:json": "find schema -name '*.ts' -type f -exec sh -c 'typescript-json-schema --defaultNumberType integer --required \"{}\" \"*\" -o \"$(dirname {})/$(basename {} .ts).json\"' \\;",
"serve:docs": "hugo --source site/ server --logLevel debug --disableFastRender"
},
"devDependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"glob": "^11.0.0",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"typescript-json-schema": "^0.65.1"
},
"resolutions": {
"fast-json-patch": "^3.1.1"
}
}