norminette-mcp
Version:
MCP server for 42 School norminette coding standard checker
59 lines (58 loc) • 1.4 kB
JSON
{
"name": "norminette-mcp",
"version": "0.4.1",
"description": "MCP server for 42 School norminette coding standard checker",
"main": "dist/index.js",
"type": "module",
"bin": {
"norminette-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"postbuild": "echo '#!/usr/bin/env node' > temp && tail -n +2 dist/index.js >> temp && mv temp dist/index.js && chmod +x dist/index.js",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "mocha test/*.test.js",
"prepublishOnly": "npm run build"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"keywords": [
"mcp",
"model-context-protocol",
"norminette",
"42",
"42school",
"coding-standards",
"linter",
"code-checker"
],
"author": "smatsuodev",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/smatsuodev/norminette-mcp.git"
},
"bugs": {
"url": "https://github.com/smatsuodev/norminette-mcp/issues"
},
"homepage": "https://github.com/smatsuodev/norminette-mcp#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/js-yaml": "^4.0.5",
"@types/node": "^22.0.0",
"chai": "^5.2.0",
"mocha": "^11.6.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18"
}
}