-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.52 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
{
"name": "memento",
"version": "0.4.0",
"description": "Coding-agent memory layer",
"type": "module",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Destiner/memento.git"
},
"bugs": {
"url": "https://github.com/Destiner/memento/issues"
},
"homepage": "https://github.com/Destiner/memento#readme",
"engines": {
"node": ">=22.5"
},
"bin": {
"memento": "./dist/main.js"
},
"main": "./dist/index.js",
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"format": "prettier --write .",
"test": "vitest run",
"report": "bun run src/report/main.ts",
"retrospective": "tsx retrospective/main.ts",
"harness": "bun run test-harness/runner/index.ts",
"harness:report": "bun run test-harness/runner/report-cli.ts",
"typecheck:retrospective": "tsc -p retrospective/tsconfig.json",
"test:retrospective": "vitest run --config retrospective/vitest.config.ts",
"typecheck:harness": "tsc -p test-harness/tsconfig.json",
"test:harness": "vitest run --config test-harness/vitest.config.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.19.1",
"yaml": "^2.9.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@types/node": "^24.10.1",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.6.2",
"tsx": "^4.23.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.4",
"vitest": "^3.2.4"
}
}