stack/apps/mcp-server/package.json
Konstantin Wohlwend 02267b43c8
Some checks failed
all-good: Did all the other checks pass? / all-good (push) Has been cancelled
Ensure Prisma migrations are in sync with the schema / check_prisma_migrations (22.x) (push) Has been cancelled
Docker Emulator Test / docker (push) Has been cancelled
Docker Server Build and Push / Docker Build and Push Server (push) Has been cancelled
Docker Server Test / docker (push) Has been cancelled
Runs E2E API Tests / build (22.x) (push) Has been cancelled
Lint & build / lint_and_build (latest) (push) Has been cancelled
Preview Docs / run (push) Has been cancelled
Dev Environment Test / restart-dev-and-test (push) Has been cancelled
Run setup tests / setup-tests (push) Has been cancelled
TOC Generator / TOC Generator (push) Has been cancelled
Mirror main branch to main-mirror-for-wdb / lint_and_build (push) Has been cancelled
Publish Docs / run (push) Has been cancelled
chore: update package versions
2025-06-12 02:31:20 +02:00

30 lines
679 B
JSON

{
"name": "@stackframe/mcp-server",
"version": "2.8.14",
"private": true,
"type": "module",
"bin": {
"mcp-server": "./build/index.js"
},
"scripts": {
"start": "tsx src/index.ts",
"dev-mcp-server": "tsx watch --clear-screen=false src/index.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"clean": "rimraf build && rimraf node_modules && rimraf openapi/*.json",
"build": "tsc"
},
"files": [
"build"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"@stackframe/js": "workspace:*",
"openapi-types": "^12.1.3"
},
"devDependencies": {
"@types/node": "20.17.6",
"typescript": "5.3.3"
}
}