-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.57 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
{
"name": "@dantelabs/memento",
"version": "0.3.2",
"description": "Bi-directional code-assistant memory sync (Claude Code, Codex, Gemini CLI, Antigravity, Cursor, Windsurf)",
"type": "module",
"bin": {
"memento": "dist/cli/index.js"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"bin",
"skill"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"postinstall": "node -e \"const fs=require('fs'),cp=require('child_process'),p='./dist/install/postinstall.js';if(fs.existsSync(p)){const r=cp.spawnSync(process.execPath,[p],{stdio:'inherit'});process.exit(r.status??0)}\"",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src tests",
"typecheck": "tsc --noEmit"
},
"engines": {
"node": ">=18"
},
"license": "MIT",
"author": "Dante <datapod.k@gmail.com>",
"homepage": "https://github.com/dandacompany/memento",
"repository": {
"type": "git",
"url": "git+https://github.com/dandacompany/memento.git"
},
"keywords": [
"claude-code",
"codex",
"gemini",
"cursor",
"windsurf",
"antigravity",
"ai-memory",
"sync",
"cli"
],
"devDependencies": {
"@types/node": "^22",
"@vitest/coverage-v8": "^2.1",
"eslint": "^9",
"tmp": "^0.2.3",
"typescript": "^5.6",
"typescript-eslint": "^8",
"vitest": "^2.1"
},
"dependencies": {
"@iarna/toml": "^2.2.5",
"@inquirer/prompts": "^7.0.0",
"chokidar": "^4.0.3",
"commander": "^12.0.0",
"gray-matter": "^4.0.3",
"picocolors": "^1.0.1"
}
}