Range edits: - next 16.2.1 -> 16.2.7 in apps/editor + apps/ifc-converter. 16.2.5/16.2.6 fixed six high-severity advisories (middleware bypass, DoS, SSRF, XSS, RSC cache poisoning); 16.2.7 is bugfix backports. No API/config changes. - typescript 6.0.2 -> 6.0.3 everywhere, including aligning the 5.9.3 stragglers (@pascal-app/mcp, @repo/ui, @repo/eslint-config) that date from the original scaffold and were never intentionally held back. - @types/node in @pascal-app/mcp: ^25.5.0 -> ^22.19.20 — mcp was the only workspace typed against non-LTS node 25; 22 matches the release workflow's node and every other workspace. - @number-flow/react ^0.5.14 -> ^0.6.0 (packages/editor, apps/editor); the only breaking change (removed --number-flow-char-height CSS var) is unused here. - agentation ^2.3.2 -> ^3.0.2 (apps/editor devtool; v3 is a drop-in for the props-less <Agentation /> usage, additions are opt-in). - Root overrides: @types/react 19.2.14 -> 19.2.17, @types/three 0.184.0 -> 0.184.1 (types-only fixes). Lockfile refresh within existing ranges picks up react 19.2.7 (pairs with next 16.2.7 — 19.2.6 had a server-action FormData regression), motion 12.40.0, three-mesh-bvh 0.9.10, @react-three/uikit-lucide 1.0.73, the June radix wave, lucide-react 1.17.0, zustand 5.0.14, tailwind-merge 3.6.0, geist 1.7.2 (fixes Geist Mono ligature regression), react-grab 0.1.44, biome 2.4.16 + ultracite 7.8.2, turbo 2.9.17. Held: three stays 0.184.0 (npm latest; single-instance constraint), tailwindcss 4.3.0 + lightningcss 1.32.0 already match the pinned optionalDependencies native binaries, eslint 10 major not taken (@repo/ui is unconsumed legacy scaffold). Verified: turbo build, check-types, biome check, and 931 package tests green; bun.lock stays lockfileVersion 1 (CI bun 1.3.0 compatible); single next/three resolution confirmed. 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.8.0"
|
|
},
|
|
"dependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
"zod": "^4.3.5"
|
|
},
|
|
"devDependencies": {
|
|
"@pascal-app/core": "^0.8.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"
|
|
}
|