-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.57 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
{
"name": "posecode-mcp",
"version": "0.5.0",
"description": "Model Context Protocol server for Posecode: let any LLM agent validate, ROM-check, and get a render link for a .posecode movement, natively.",
"mcpName": "io.github.posecode-dev/posecode-mcp",
"license": "AGPL-3.0-only",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"bin": {
"posecode-mcp": "dist/posecode-mcp.mjs"
},
"files": [
"dist",
"README.md",
"LICENSE",
"NOTICE"
],
"scripts": {
"typecheck": "tsc --noEmit",
"start": "tsx src/stdio.ts",
"build": "tsc -p tsconfig.json && node ../../scripts/copy-mcp-guide.mjs && esbuild src/stdio.ts --bundle --platform=node --format=esm --external:@modelcontextprotocol/sdk --external:zod --outfile=dist/posecode-mcp.mjs",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/posecode-dev/posecode.git",
"directory": "packages/posecode-mcp"
},
"keywords": [
"mcp",
"model-context-protocol",
"posecode",
"kinematics",
"3d",
"animation",
"fitness",
"physiotherapy"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0",
"posecode-parser": "0.5.0",
"posecode-share": "0.5.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@types/node": "^26.2.0",
"esbuild": "^0.28.2",
"tsx": "^4.19.2"
},
"publishConfig": {
"access": "public"
}
}