feat: add allowed Linear API operations to MCP config

This commit is contained in:
Do Siki
2025-09-05 03:10:17 +02:00
parent 7e7d3fb1cc
commit b6365543ef
36 changed files with 14648 additions and 1 deletions
+41
View File
@@ -0,0 +1,41 @@
{
"name": "proto",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"lint": "eslint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"react": "19.1.0",
"react-dom": "19.1.0",
"next": "15.5.2",
"mongodb": "^6.5",
"mongoose": "^8.2"
},
"devDependencies": {
"typescript": "^5",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@tailwindcss/postcss": "^4",
"tailwindcss": "^4",
"eslint": "^9",
"eslint-config-next": "15.5.2",
"@eslint/eslintrc": "^3",
"jest": "^29.7",
"jest-environment-jsdom": "^29.7",
"@testing-library/react": "^16.0",
"@testing-library/jest-dom": "^6.5",
"@testing-library/user-event": "^14.5",
"@types/jest": "^29.5",
"winston": "^3.11",
"winston-loki": "^6.0",
"@types/winston": "^2.4"
}
}