forked from rohitg00/agentmemory
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.76 KB
/
Copy pathpackage.json
File metadata and controls
125 lines (125 loc) · 3.76 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@agentmemory/agentmemory",
"mcpName": "io.github.rohitg00/agentmemory",
"version": "0.9.28",
"description": "Persistent memory for AI coding agents, powered by iii-engine's three primitives",
"type": "module",
"main": "dist/index.mjs",
"types": "dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./dist/standalone.mjs": "./dist/standalone.mjs",
"./package.json": "./package.json"
},
"bin": {
"agentmemory": "dist/cli.mjs"
},
"scripts": {
"prebuild": "node scripts/prepare-bundled-deps.mjs",
"build": "tsdown && node scripts/copy-build-assets.mjs",
"prepack": "node scripts/prepare-bundled-deps.mjs",
"dev": "tsx src/index.ts",
"start": "node dist/cli.mjs",
"migrate": "node dist/cli.mjs migrate",
"pretest": "node scripts/prepare-bundled-deps.mjs",
"test": "vitest run --exclude test/integration.test.ts",
"test:watch": "vitest --exclude test/integration.test.ts",
"pretest:integration": "npm run build",
"test:integration": "node scripts/run-integration-tests.mjs",
"test:integration:live": "vitest run test/integration.test.ts",
"test:all": "npm test && npm run test:integration",
"release:preflight": "node scripts/release-preflight.mjs",
"release:preflight:arena": "node scripts/release-preflight.mjs --with-retrieval-arena",
"skills:gen": "tsx scripts/skills/generate.ts",
"skills:check": "tsx scripts/skills/generate.ts --check && tsx scripts/skills/check.ts",
"bench:retrieval-smoke": "node --import tsx benchmark/retrieval-arena-smoke.ts",
"bench:load": "node --import tsx benchmark/load-100k.ts",
"eval:longmemeval": "tsx eval/runner/longmemeval.ts",
"eval:coding-life": "tsx eval/runner/coding-life.ts"
},
"keywords": [
"ai",
"agent",
"memory",
"persistent",
"iii-engine",
"claude-code",
"coding-agent",
"context",
"observation"
],
"files": [
"dist/",
"plugin/",
"packaging/",
"vendor/",
"iii-config.yaml",
"iii-config.docker.yaml",
"docker-compose.yml",
"server.json",
"smithery.yaml",
".env.example",
"LICENSE",
"README.md",
"AGENTS.md"
],
"bundledDependencies": [
"iii-sdk",
"@opentelemetry/resources",
"@opentelemetry/sdk-logs"
],
"author": "Rohit Ghumare <ghumare64@gmail.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/rohitg00/agentmemory"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.142",
"@anthropic-ai/sdk": "^0.100.1",
"@clack/prompts": "^1.2.0",
"dotenv": "^17.4.2",
"iii-sdk": "0.11.2",
"picocolors": "^1.1.1",
"zod": "^4.0.0"
},
"optionalDependencies": {
"@node-rs/jieba": "^2.0.1",
"@xenova/transformers": "^2.17.2",
"onnxruntime-node": "^1.14.0",
"onnxruntime-web": "^1.14.0",
"tiny-segmenter": "^0.2.0"
},
"devDependencies": {
"@types/node": "^25.9.1",
"tsdown": "^0.21.10",
"tsx": "^4.19.0",
"typescript": "^6.0.3",
"vitest": "^4.1.6"
},
"overrides": {
"@opentelemetry/core": "2.9.0",
"@opentelemetry/resources": "file:vendor/opentelemetry-resources-compat",
"@opentelemetry/sdk-logs": "file:vendor/opentelemetry-sdk-logs-compat",
"@opentelemetry/sdk-metrics": "2.9.0",
"@opentelemetry/sdk-trace-base": "2.9.0",
"@opentelemetry/sdk-trace-node": "2.9.0",
"@opentelemetry/propagator-b3": "2.9.0",
"@opentelemetry/propagator-jaeger": "2.9.0",
"@opentelemetry/otlp-transformer": "0.220.0",
"qs": "^6.15.2",
"ws": "^8.21.0",
"protobufjs": "^7.5.8"
},
"engines": {
"node": ">=20.0.0"
},
"bundleDependencies": [
"iii-sdk",
"@opentelemetry/resources",
"@opentelemetry/sdk-logs"
]
}