package.json•1.64 kB
{
"name": "primeng-mcp-server",
"version": "2.0.0",
"description": "MCP Server for PrimeNG documentation and components - Scrapes and provides access to PrimeNG component docs, examples, and code generation",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "vitest",
"test:unit": "vitest run tests/unit/",
"test:coverage": "vitest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts"
},
"keywords": [
"mcp",
"model-context-protocol",
"primeng",
"documentation",
"angular",
"web-scraping",
"component-library",
"code-generation",
"claude"
],
"author": "PrimeNG MCP Server Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/primeng-mcp-server"
},
"bugs": {
"url": "https://github.com/yourusername/primeng-mcp-server/issues"
},
"homepage": "https://github.com/yourusername/primeng-mcp-server#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"axios": "^1.7.9",
"cheerio": "^1.0.0"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"@vitest/coverage-v8": "^4.0.4",
"eslint": "^9.38.0",
"prettier": "^3.6.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^4.0.4"
}
}