-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.37 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
{
"name": "codememory-for-claude",
"version": "0.4.0",
"description": "CodeMemory for Claude Code CLI",
"type": "module",
"main": "dist/plugin/index.js",
"exports": "./dist/plugin/index.js",
"license": "MIT",
"author": "harry <harlihao>",
"keywords": [
"claude-code",
"memory-system",
"codememory",
"context-management",
"llm",
"summarization",
"conversation-memory",
"dag"
],
"scripts": {
"test": "vitest run --dir test",
"test:watch": "vitest watch --dir test",
"build": "tsc",
"build:watch": "tsc --watch",
"plugin:validate": "claude plugin validate .",
"plugin:check-dist": "node scripts/check-dist-committed.mjs",
"plugin:release-check": "npm run build && npm run plugin:check-dist && claude plugin validate .",
"lint": "eslint src/**/*.ts",
"benchmark": "npm run build && node benchmark/lookup-latency.ts",
"benchmark:ci": "npm run build && node benchmark/lookup-latency.ts --ci"
},
"files": [
".claude-plugin/",
"hooks/",
"dist/**/*.js",
"src/**/*.ts",
"SKILL.md",
"docs/",
"README.md",
"README.zh-CN.md",
"LICENSE"
],
"engines": {
"node": ">=22.5.0"
},
"dependencies": {
"@sinclair/typebox": "0.34.48"
},
"devDependencies": {
"@types/node": "^22.5.0",
"eslint": "^9.0.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}