-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.2 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
{
"name": "getmnemo-cli",
"version": "0.3.0",
"description": "Official CLI for Mnemo — manage memories, workspaces, and integrations from your terminal.",
"type": "module",
"bin": {
"getmnemo": "./dist/cli.js"
},
"main": "./dist/cli.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/cli.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit",
"smoke": "node scripts/prod-smoke.mjs",
"prepublishOnly": "npm run build"
},
"dependencies": {
"commander": "^12.1.0",
"getmnemo": "^0.5.1",
"kleur": "^4.1.5",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/node": "^22.10.0",
"@types/prompts": "^2.4.9",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=20"
},
"keywords": [
"getmnemo",
"memory",
"cli",
"ai",
"agents",
"rag"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ledgermem/getmnemo-cli.git"
},
"homepage": "https://mnemohq.com",
"bugs": {
"url": "https://github.com/ledgermem/getmnemo-cli/issues"
}
}