package.json•1.43 kB
{
"name": "inks-mcp",
"version": "1.0.0",
"description": "MCP server for fountain pen ink knowledge and recommendations",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js",
"watch": "tsc --watch",
"test": "npm run build && node test/run-all-tests.js",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"client": "node scripts/mcp-client.js",
"tools:list": "node scripts/mcp-client.js --list"
},
"keywords": [
"mcp",
"fountain-pen",
"ink",
"color",
"search"
],
"author": "Edd Wilder-James",
"license": "GPL-3.0",
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/ewilderj/inks-mcp.git"
},
"bugs": {
"url": "https://github.com/ewilderj/inks-mcp/issues"
},
"homepage": "https://github.com/ewilderj/inks-mcp#readme",
"devDependencies": {
"@types/node": "^24.1.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3",
"typescript": "^5.8.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.0",
"fuse.js": "^7.1.0",
"zod": "^3.25.76"
}
}