mirror of
https://github.com/n8n-io/n8n.git
synced 2026-06-04 18:49:20 +02:00
64 lines
1.8 KiB
JSON
64 lines
1.8 KiB
JSON
{
|
|
"name": "@n8n/mcp-apps",
|
|
"version": "0.2.0",
|
|
"description": "MCP Apps UI resources and server helpers for n8n",
|
|
"main": "dist/server/index.js",
|
|
"types": "dist/server/index.d.ts",
|
|
"typesVersions": {
|
|
"*": {
|
|
"server": [
|
|
"dist/server/index.d.ts"
|
|
]
|
|
}
|
|
},
|
|
"exports": {
|
|
"./server": {
|
|
"types": "./dist/server/index.d.ts",
|
|
"default": "./dist/server/index.js"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"files": [
|
|
"dist/**/*"
|
|
],
|
|
"scripts": {
|
|
"clean": "rimraf dist .turbo",
|
|
"build": "pnpm build:ui && pnpm build:server",
|
|
"build:ui": "vite build --mode workflow-preview",
|
|
"build:server": "tsc -p tsconfig.build.json",
|
|
"typecheck": "vue-tsc --noEmit -p tsconfig.json && tsc --noEmit -p tsconfig.build.json",
|
|
"lint": "eslint . --quiet",
|
|
"lint:fix": "eslint . --fix",
|
|
"test": "vitest run",
|
|
"test:unit": "vitest run",
|
|
"test:dev": "vitest",
|
|
"format": "biome format --write src",
|
|
"format:check": "biome ci src"
|
|
},
|
|
"devDependencies": {
|
|
"@modelcontextprotocol/ext-apps": "catalog:",
|
|
"@modelcontextprotocol/sdk": "catalog:",
|
|
"@n8n/design-system": "workspace:*",
|
|
"@n8n/eslint-config": "workspace:*",
|
|
"@n8n/typescript-config": "workspace:*",
|
|
"@n8n/vitest-config": "workspace:*",
|
|
"@types/semver": "^7.7.0",
|
|
"@vitejs/plugin-vue": "catalog:frontend",
|
|
"@vue/test-utils": "catalog:frontend",
|
|
"rimraf": "catalog:",
|
|
"semver": "catalog:",
|
|
"typescript": "catalog:",
|
|
"unplugin-icons": "catalog:frontend",
|
|
"vite": "catalog:",
|
|
"vite-plugin-singlefile": "catalog:",
|
|
"vite-svg-loader": "catalog:frontend",
|
|
"vitest": "catalog:",
|
|
"vue": "catalog:frontend",
|
|
"vue-i18n": "catalog:frontend",
|
|
"vue-tsc": "catalog:frontend"
|
|
},
|
|
"peerDependencies": {
|
|
"@modelcontextprotocol/sdk": "catalog:"
|
|
}
|
|
}
|