package.json•2.51 kB
{
"name": "mcp-server-linearapp",
"version": "0.1.0",
"description": "A Model Context Protocol (MCP) server for the Linear API",
"author": "",
"license": "MIT",
"main": "dist/index.js",
"type": "module",
"bin": {
"mcp-server-linearapp": "dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/magarcia/mcp-server-linearapp.git"
},
"bugs": {
"url": "https://github.com/magarcia/mcp-server-linearapp/issues"
},
"homepage": "https://github.com/magarcia/mcp-server-linearapp#readme",
"keywords": [
"mcp",
"model-context-protocol",
"linear",
"server"
],
"targets": {
"main": {
"context": "node",
"includeNodeModules": false,
"outputFormat": "esmodule",
"sourceMap": false,
"isLibrary": true,
"optimize": true,
"engines": {
"node": ">=16.0.0"
},
"source": "src/index.ts",
"distDir": "dist"
}
},
"scripts": {
"clean": "rm -rf build dist",
"prebuild": "npm run clean",
"build": "tsc && npm run bundle",
"postbuild": "chmod +x dist/index.js",
"bundle": "parcel build --target main --no-cache",
"start": "node dist/index.js",
"dev": "ts-node --esm src/index.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:warn": "eslint . --max-warnings 9999",
"format": "prettier --write \"src/**/*.{ts,json}\"",
"typecheck": "tsc --noEmit",
"preinspector": "npm run build",
"inspector": "npx @modelcontextprotocol/inspector npm run start",
"test": "jest",
"prepublishOnly": "npm run lint && npm run test && npm run build"
},
"dependencies": {
"@linear/sdk": "^38.0.0",
"@modelcontextprotocol/sdk": "^1.7.0",
"dotenv": "^16.3.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^8.57.1",
"@types/jest": "^29.5.0",
"@types/node": "^16.18.126",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.1",
"globals": "^16.0.0",
"jest": "^29.5.0",
"parcel": "^2.14.1",
"prettier": "^3.5.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"typescript-eslint": "^0.0.1-alpha.0"
},
"optionalDependencies": {
"@parcel/watcher-linux-x64-glibc": "^2.4.0",
"@swc/core-linux-x64-gnu": "^1.3.101"
}
}