package.json•1.79 kB
{
"name": "context-continue-mcp",
"version": "0.1.3",
"description": "MCP server for intelligent context continuation across AI sessions",
"main": "dist/index.js",
"type": "module",
"bin": {
"context-mcp": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --coverage --ci --watchAll=false",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist coverage",
"prepublishOnly": "npm run clean && npm run build && npm run test:ci",
"verify-npm": "node scripts/verify-npm-setup.js"
},
"keywords": [
"mcp",
"ai",
"context",
"claude",
"llm",
"development"
],
"author": "FluffyLamas",
"license": "Apache-2.0",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.4.0",
"commander": "^11.0.0",
"tiktoken": "^1.0.14",
"gray-matter": "^4.0.3",
"date-fns": "^2.30.0",
"fs-extra": "^11.2.0",
"chalk": "^5.3.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/fs-extra": "^11.0.0",
"@types/jest": "^29.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/core3-coder/context-continue-mcp.git"
},
"bugs": {
"url": "https://github.com/core3-coder/context-continue-mcp/issues"
},
"homepage": "https://github.com/core3-coder/context-continue-mcp#readme"
}