-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathpackage.json
43 lines (43 loc) · 1.24 KB
/
package.json
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
{
"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"
},
"prettier": {
"overrides": [
{
"files": "*.md",
"options": {
"printWidth": 89,
"proseWrap": "always"
}
}
]
},
"scripts": {
"validate:schema": "tsc --noEmit schema/**/*.ts",
"generate:json": "for f in schema/*/schema.ts; do typescript-json-schema --defaultNumberType integer --required \"$f\" \"*\" -o \"${f%ts}json\"; done",
"serve:docs": "hugo --source site/ server --logLevel debug --disableFastRender",
"format": "prettier --write \"**/*.md\"",
"format:check": "prettier --check \"**/*.md\""
},
"devDependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"glob": "^11.0.0",
"prettier": "^3.4.2",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"typescript-json-schema": "^0.65.1"
},
"resolutions": {
"fast-json-patch": "^3.1.1"
}
}