package.json•1.34 kB
{
"name": "cursor-context-core",
"version": "0.1.0",
"description": "Core library for reading and managing Cursor AI chat session context",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"dev": "tsx",
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.ts\"",
"cli": "tsx src/cli/index.ts"
},
"bin": {
"cursor-context": "./dist/cli/index.js",
"cursor-context-mcp": "./dist/mcp-server/index.js"
},
"keywords": [
"cursor",
"ai",
"context",
"chat",
"session",
"mcp"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.2",
"better-sqlite3": "^11.5.0",
"chalk": "^5.6.2",
"cli-table3": "^0.6.5",
"commander": "^14.0.2",
"ora": "^9.0.0",
"playwright": "^1.56.1"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"prettier": "^3.3.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^2.1.0"
},
"engines": {
"node": ">=18.0.0"
}
}