@memlink/cli 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,70 @@
1
+ {
2
+ "name": "@memlink/cli",
3
+ "version": "1.0.1",
4
+ "description": "Memlink — Universal memory async and organized for AI agents. Self hosted, Fast, Organized.",
5
+ "keywords": ["mcp", "memory", "ai", "agents", "modelcontextprotocol", "memlink", "cli", "llm"],
6
+ "license": "MIT",
7
+ "private": false,
8
+ "type": "module",
9
+ "files": ["dist/cli", "dist/server", "README.md", "LICENSE"],
10
+ "main": "./dist/cli/index.js",
11
+ "publishConfig": { "access": "public" },
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "https://github.com/rblez/memlink.git"
15
+ },
16
+ "bugs": {
17
+ "url": "https://github.com/rblez/memlink/issues"
18
+ },
19
+ "homepage": "https://rblez.com/memlink",
20
+ "bin": {
21
+ "memlink": "./dist/cli/index.js"
22
+ },
23
+ "exports": {
24
+ ".": {
25
+ "import": "./dist/cli/index.js"
26
+ },
27
+ "./server": {
28
+ "import": "./dist/server/index.js"
29
+ }
30
+ },
31
+ "engines": {
32
+ "node": ">=18.0.0",
33
+ "bun": ">=1.0.0"
34
+ },
35
+ "scripts": {
36
+ "build": "bun build src/cli/index.ts --outdir dist/cli --target node && bun build src/server/index.ts --outdir dist/server --target node",
37
+ "dev:server": "bun --watch src/server/index.ts",
38
+ "dev:cli": "bun src/cli/index.ts",
39
+ "start": "node dist/server/index.js",
40
+ "cli": "bun src/cli/index.ts",
41
+ "test": "bun test",
42
+ "test:watch": "bun test --watch",
43
+ "lint": "eslint src --ext .ts",
44
+ "lint:fix": "eslint src --ext .ts --fix",
45
+ "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
46
+ "format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
47
+ "prepublishOnly": "npm run build"
48
+ },
49
+ "dependencies": {
50
+ "@modelcontextprotocol/sdk": "^1.29.0",
51
+ "chalk": "^5.6.2",
52
+ "commander": "^14.0.3",
53
+ "express": "^5.2.1",
54
+ "express-rate-limit": "^8.5.2",
55
+ "nanoid": "^5.1.11",
56
+ "table": "^6.9.0",
57
+ "zod": "^4.4.3"
58
+ },
59
+ "devDependencies": {
60
+ "@eslint/js": "^10.0.1",
61
+ "@types/express": "^5.0.6",
62
+ "@types/node": "^25.8.0",
63
+ "eslint": "^10.4.0",
64
+ "eslint-config-prettier": "^10.1.8",
65
+ "eslint-plugin-prettier": "^5.5.5",
66
+ "prettier": "^3.8.3",
67
+ "typescript": "^6.0.3",
68
+ "typescript-eslint": "^8.59.3"
69
+ }
70
+ }