-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.51 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.51 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
{
"name": "@event4u/agent-memory",
"version": "1.1.0",
"description": "Persistent, trust-scored project memory for AI coding agents — MCP server + CLI",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./cli": {
"types": "./dist/cli/index.d.ts",
"import": "./dist/cli/index.js"
},
"./package.json": "./package.json"
},
"bin": {
"memory": "dist/cli/index.js"
},
"files": [
"dist",
"schema",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsx watch src/cli/index.ts",
"start": "node dist/cli/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:contract": "vitest run tests/contract",
"lint": "biome check src/ tests/",
"lint:fix": "biome check --write src/ tests/",
"typecheck": "tsc --noEmit",
"db:migrate": "tsx src/db/migrate.ts",
"db:migrate:rollback": "tsx src/db/rollback.ts",
"mcp:start": "tsx src/mcp/server.ts",
"docs:cli": "tsx scripts/generate-cli-docs.ts",
"docs:cli:check": "npm run docs:cli && git diff --exit-code docs/cli-reference.md",
"docs:secrets": "tsx scripts/generate-secret-patterns-doc.ts",
"docs:secrets:check": "npm run docs:secrets && git diff --exit-code docs/secret-safety.md",
"entropy:eval": "tsx scripts/eval-entropy-threshold.ts",
"entropy:eval:check": "npm run entropy:eval && git diff --exit-code docs/security/entropy-calibration.md",
"check:portability": "AGENT_CONFIG_BLOCKLIST=\"FormRequest,Eloquent,artisan,Blade,Livewire\" python3 node_modules/@event4u/agent-config/scripts/check_portability.py --root .",
"check:neutral-docs": "tsx scripts/check-neutral-docs.ts",
"check:mcp-tools": "tsx scripts/check-mcp-tools.ts",
"check:cli-commands": "tsx scripts/check-cli-commands.ts",
"check:changelog": "tsx scripts/check-changelog.ts",
"check:deprecation-changelog": "tsx scripts/check-deprecation-changelog.ts",
"check:embedding-boundary": "tsx scripts/check-embedding-boundary.ts",
"check:ingress-guards": "tsx scripts/check-ingress-guards.ts",
"check:links": "docker run --rm --init -v \"$(pwd):/input\" -w /input lycheeverse/lychee:latest --config lychee.toml README.md AGENTS.md CHANGELOG.md docs examples agents/roadmaps/archive/improve-setup.md .github/copilot-instructions.md",
"prepare": "npm run build",
"postinstall": "bash scripts/postinstall.sh"
},
"keywords": [
"agent-memory",
"mcp",
"ai-coding",
"knowledge-management",
"vector-search"
],
"author": "event4u",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/event4u-app/agent-memory.git"
},
"homepage": "https://github.com/event4u-app/agent-memory#readme",
"bugs": {
"url": "https://github.com/event4u-app/agent-memory/issues"
},
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"commander": "^14.0.3",
"pgvector": "^0.2.1",
"pino": "^10.3.1",
"postgres": "^3.4.9",
"prom-client": "^15.1.3",
"yaml": "^2.8.3"
},
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@event4u/agent-config": "github:event4u-app/agent-config#main",
"@types/node": "^25.6.0",
"ajv": "^8.18.0",
"ajv-formats": "^3.0.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
}
}