aboutsummaryrefslogtreecommitdiff
path: root/packages/mcp/package.json
blob: e9e14b4035f7dd96e4f7156fdf2880ba5bbdb1ba (plain) (blame)
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
{
	"name": "@imemio/mcp",
	"version": "0.0.1",
	"description": "MCP server for imemio AI agent memory service",
	"type": "module",
	"main": "./dist/index.js",
	"types": "./dist/index.d.ts",
	"bin": {
		"imemio-mcp": "./dist/index.js"
	},
	"exports": {
		".": {
			"types": "./dist/index.d.ts",
			"import": "./dist/index.js"
		}
	},
	"files": [
		"dist"
	],
	"scripts": {
		"build": "tsc",
		"dev": "tsc --watch",
		"test": "vitest run",
		"test:watch": "vitest"
	},
	"dependencies": {
		"@imemio/sdk": "workspace:*",
		"@modelcontextprotocol/sdk": "^1.0.0",
		"zod": "^3.24.0"
	},
	"devDependencies": {
		"@imemio/typescript-config": "workspace:*",
		"@types/node": "^22.13.3",
		"typescript": "^5.7.3",
		"vitest": "^3.0.5"
	}
}