-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "mcp-me",
"version": "0.6.0",
"mcpName": "io.github.paladini/mcp-me",
"description": "A community-driven MCP server framework that lets anyone expose personal information to AI assistants via the Model Context Protocol.",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"mcp-me": "./dist/cli.js"
},
"sideEffects": false,
"files": [
"dist",
"templates"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint src/ tests/",
"lint:fix": "eslint src/ tests/ --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"pack:mcpb": "node scripts/pack-mcpb.mjs",
"generate:install-links": "node scripts/generate-install-links.mjs",
"validate:open-plugin": "node scripts/validate-open-plugin.mjs"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"personal-profile",
"ai",
"llm",
"ai-assistant",
"claude",
"cursor",
"windsurf",
"copilot",
"plugin",
"generator",
"yaml",
"cli",
"typescript",
"identity",
"profile",
"framework"
],
"author": "Fernando Paladini",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/paladini/mcp-me.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"commander": "^13.1.0",
"yaml": "^2.7.1",
"zod": "^3.24.4"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^22.15.3",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.1",
"harness-score": "^1.3.2",
"prettier": "^3.5.3",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.57.1",
"vitest": "^3.1.3"
}
}