The v0.9.0 GitHub release declared the trio at 0.9.0 but the npm publish never ran (npm still serves 0.8.0). Aligning manifests so the release workflow's bump=patch lands everything at the announced-next 0.9.1 (mcp 0.3.0 -> 0.3.1, ifc-converter 0.1.0 -> 0.1.1 keep their own lines, matching the per-package version table style of previous releases). Inter-package peer/dev refs move to ^0.9.0 so the workspace stays self-linked during the release run; the workflow re-syncs them to the final versions after bumping. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
88 lines
2.2 KiB
JSON
88 lines
2.2 KiB
JSON
{
|
|
"name": "@pascal-app/mcp",
|
|
"version": "0.3.0",
|
|
"description": "Model Context Protocol server for Pascal 3D editor",
|
|
"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"
|
|
},
|
|
"./server": {
|
|
"types": "./dist/server.d.ts",
|
|
"import": "./dist/server.js",
|
|
"default": "./dist/server.js"
|
|
},
|
|
"./storage": {
|
|
"types": "./dist/storage/index.d.ts",
|
|
"import": "./dist/storage/index.js",
|
|
"default": "./dist/storage/index.js"
|
|
},
|
|
"./storage/types": {
|
|
"types": "./dist/storage/types.d.ts",
|
|
"import": "./dist/storage/types.js",
|
|
"default": "./dist/storage/types.js"
|
|
},
|
|
"./operations": {
|
|
"types": "./dist/operations/index.d.ts",
|
|
"import": "./dist/operations/index.js",
|
|
"default": "./dist/operations/index.js"
|
|
},
|
|
"./bridge": {
|
|
"types": "./dist/bridge/index.d.ts",
|
|
"import": "./dist/bridge/index.js",
|
|
"default": "./dist/bridge/index.js"
|
|
}
|
|
},
|
|
"bin": {
|
|
"pascal-mcp": "./dist/bin/pascal-mcp.js"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"examples",
|
|
"README.md",
|
|
"CHANGELOG.md"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc --build",
|
|
"dev": "tsc --build --watch",
|
|
"start": "bun dist/bin/pascal-mcp.js",
|
|
"test": "bun test",
|
|
"smoke": "bun run scripts/smoke.ts",
|
|
"prepublishOnly": "bun run build && bun test"
|
|
},
|
|
"peerDependencies": {
|
|
"@pascal-app/core": "^0.9.0"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
"zod": "^4.3.5"
|
|
},
|
|
"devDependencies": {
|
|
"@pascal-app/core": "^0.9.0",
|
|
"@pascal/typescript-config": "*",
|
|
"@types/node": "^22.19.20",
|
|
"typescript": "6.0.3"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"model-context-protocol",
|
|
"pascal",
|
|
"3d",
|
|
"building",
|
|
"editor",
|
|
"ai"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/pascalorg/editor.git",
|
|
"directory": "packages/mcp"
|
|
},
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/pascalorg/editor/tree/main/packages/mcp#readme",
|
|
"bugs": "https://github.com/pascalorg/editor/issues"
|
|
}
|