-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.85 KB
/
Copy pathpackage.json
File metadata and controls
123 lines (123 loc) · 3.85 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
{
"name": "@rbalchii/anchor-engine",
"version": "5.3.0",
"description": "Deterministic semantic memory for LLMs - local-first, graph traversal, <1GB RAM",
"main": "engine/dist/index.js",
"type": "module",
"bin": {
"anchor-engine": "engine/dist/index.js",
"anchor-mcp": "engine/dist/mcp/server.js"
},
"scripts": {
"test:vitest": "npx vitest run --config engine/vitest.config.ts --reporter=verbose",
"start": "node --expose-gc engine/dist/index.js",
"dev": "pnpm --filter anchor-engine dev",
"build": "pnpm build:all",
"build:all": "pnpm --filter anchor-engine build",
"build:engine": "pnpm --filter anchor-engine build",
"clean": "rimraf engine/dist",
"postinstall": "node setup-user-config.mjs",
"start-with-logging": "node --expose-gc engine/dist/index.js > %USERPROFILE%\\.anchor\\logs\\anchor_engine.log 2>&1",
"postversion": "node scripts/sync-version.mjs && git add engine/package.json README.md && git commit --amend --no-edit",
"prepublishOnly": "pnpm run build && pnpm test",
"test": "node tests/run-tests-with-logger.js",
"test:unit": "node tests/run-tests-with-logger.js --unit",
"test:integration": "node tests/run-tests-with-logger.js --integration",
"test:bench": "node tests/run-tests-with-logger.js --benchmarks",
"live-fire": "node engine/tests/live-fire/live-fire.mjs",
"live-fire:mjs": "node engine/tests/live-fire/live-fire.mjs",
"setup-user-config": "node setup-user-config.mjs"
},
"keywords": [
"llm-memory",
"semantic-search",
"graph-database",
"rag",
"context-engine",
"memory-layer",
"deterministic-search",
"pglite",
"local-ai",
"knowledge-graph"
],
"author": "Robert Balch II",
"license": "AGPL-3.0-only",
"dependencies": {
"@electric-sql/pglite": "^0.2.0",
"@rbalchii/anchor-atomizer-wasm": "^1.0.0",
"@rbalchii/anchor-fingerprint-wasm": "^1.0.0",
"@rbalchii/anchor-keyextract-wasm": "^1.0.0",
"@rbalchii/anchor-tagwalker-wasm": "^1.0.0",
"@rbalchii/dse": "^1.0.0",
"@rbalchii/tag-walker": "^1.0.0",
"axios": "^1.6.0",
"body-parser": "^1.20.2",
"cheerio": "^1.2.0",
"chokidar": "^4.0.0",
"commander": "^13.1.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-rate-limit": "^7.4.0",
"got-scraping": "^4.1.3",
"jest-junit": "17.0.0",
"js-yaml": "^4.1.1",
"sharp": "^0.34.5",
"tar": "^7.5.10",
"turndown": "^7.2.2",
"typescript": "^5.0.0",
"undici": "^7.8.0",
"uuid": "^14.0.0",
"wink-eng-lite-web-model": "^1.8.1",
"wink-nlp": "^2.4.0",
"winston": "^3.19.0",
"winston-daily-rotate-file": "^5.0.0",
"ws": "^8.14.2"
},
"devDependencies": {
"@types/body-parser": "^1.19.6",
"@types/cheerio": "^0.22.35",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.15.0",
"@types/turndown": "^5.0.6",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"@vitest/ui": "^4.1.6",
"dependency-cruiser": "^16.10.4",
"eslint": "^8.57.1",
"eslint-plugin-security": "^4.0.0",
"jest": "^29.7.0",
"jscpd": "^4.0.8",
"nodemon": "^3.0.1",
"rimraf": "^5.0.5",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.1",
"ts-prune": "^0.10.3",
"tsx": "^4.21.0",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RSBalchII/anchor-engine-node.git"
},
"bugs": {
"url": "https://github.com/RSBalchII/anchor-engine-node/issues"
},
"homepage": "https://github.com/RSBalchII/anchor-engine-node#readme",
"files": [
"engine/dist/",
"engine/package.json",
"LICENSE",
"README.md",
"docs/"
],
"publishConfig": {
"access": "public"
}
}