-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.94 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.94 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
{
"name": "agent-host-protocol",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "tsx scripts/dev.ts",
"generate": "tsx scripts/generate.ts",
"generate:docs": "tsx scripts/generate.ts --docs",
"generate:schema": "tsx scripts/generate.ts --schema",
"generate:swift": "tsx scripts/generate.ts --swift",
"generate:rust": "tsx scripts/generate.ts --rust",
"generate:kotlin": "tsx scripts/generate.ts --kotlin",
"generate:typescript": "tsx scripts/generate.ts --typescript",
"generate:go": "tsx scripts/generate.ts --go",
"generate:metadata": "tsx scripts/generate.ts --metadata",
"verify:release-metadata": "tsx scripts/verify-release-metadata.ts",
"verify:changelog": "tsx scripts/verify-changelog.ts",
"docs:dev": "vitepress dev docs",
"docs:build": "npm run generate && vitepress build docs",
"docs:preview": "vitepress preview docs",
"typecheck": "tsc --noEmit -p types/tsconfig.json",
"lint": "eslint",
"test": "npm run typecheck && npm run lint && npm run verify:release-metadata && npm run verify:changelog && npx c8 --include types/reducers.ts --check-coverage --branches 100 tsx --test types/*.test.ts types/version/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/agent-host-protocol.git"
},
"keywords": [],
"author": "Microsoft Corporation",
"license": "MIT",
"type": "module",
"bugs": {
"url": "https://github.com/microsoft/agent-host-protocol/issues"
},
"homepage": "https://github.com/microsoft/agent-host-protocol#readme",
"devDependencies": {
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"c8": "^11.0.0",
"eslint": "^10.1.0",
"mermaid": "^11.15.0",
"ts-morph": "^24.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitepress": "^1.6.4",
"vitepress-plugin-mermaid": "^2.0.17"
}
}