53 lines
1.2 KiB
JSON
53 lines
1.2 KiB
JSON
{
|
|
"name": "@lilith/mcp-common",
|
|
"version": "1.0.0",
|
|
"description": "Shared utilities for MCP servers - versioning, common types, helpers",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"README.md",
|
|
"LICENSE"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsc --watch",
|
|
"clean": "rm -rf dist",
|
|
"typecheck": "tsc --noEmit",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"model-context-protocol",
|
|
"utilities",
|
|
"versioning",
|
|
"claude-code"
|
|
],
|
|
"author": "Victoria Lackey <VictoriaLackey@pm.me>",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://forge.nasty.sh/lilith/mcp-common.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/3viky/mcp-common/issues"
|
|
},
|
|
"homepage": "https://github.com/3viky/mcp-common#readme",
|
|
"devDependencies": {
|
|
"@lilith/configs": "workspace:*",
|
|
"@types/node": "^22.19.5",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"_": {
|
|
"registry": "forgejo",
|
|
"publish": true,
|
|
"build": true
|
|
},
|
|
"publishConfig": {
|
|
"registry": "http://forge.nasty.sh/api/packages/lilith/npm/"
|
|
}
|
|
}
|