-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.8 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.8 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
{
"name": "@awareness-sdk/local",
"version": "0.11.6",
"description": "Local-first AI agent memory system. No account needed.",
"license": "Apache-2.0",
"type": "module",
"bin": {
"awareness-local": "bin/cli.cjs"
},
"main": "./src/api.mjs",
"exports": {
".": "./src/api.mjs",
"./api": "./src/api.mjs"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@huggingface/transformers": "^3.0.0",
"@modelcontextprotocol/sdk": "1.29.0",
"better-sqlite3": "^12.8.0",
"ignore": "^7.0.5",
"mammoth": "^1.12.0",
"pdf-parse": "^2.4.5",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@stryker-mutator/core": "^9.6.1",
"@types/better-sqlite3": "^7.6.0"
},
"keywords": [
"ai",
"agent",
"memory",
"local",
"mcp",
"claude",
"cursor",
"windsurf",
"awareness"
],
"files": [
"bin/",
"src/",
"scripts/card-quality-report.mjs",
"scripts/clean-noise-cards.mjs",
"awareness-spec.json",
"LICENSE",
"README.md",
"install-transformers.mjs"
],
"scripts": {
"test": "node --test test/*.test.mjs",
"test:e2e": "playwright test --config=playwright.config.mjs",
"test:e2e:project-isolation": "node --test test/e2e/user-journeys/project-isolation.test.mjs",
"test:mutation:project-isolation": "stryker run stryker.project-dir.conf.mjs",
"benchmark": "node bin/awareness-local.mjs benchmark",
"benchmark:fixtures": "node bin/awareness-local.mjs benchmark --project ../../tests/memory-benchmark/projects/core-recall --dataset ../../tests/memory-benchmark/datasets/recall_core.jsonl --backend builtin --reindex",
"benchmark:perception": "node src/benchmark/perception-benchmark.mjs --dataset ../../tests/memory-benchmark/datasets/perception_signals.jsonl --report ../../tests/memory-benchmark/reports/perception_guard_baseline.json --markdown-report ../../tests/memory-benchmark/reports/perception_guard_baseline.md",
"benchmark:universal": "node bin/awareness-local.mjs benchmark --project ../../tests/memory-benchmark/projects/universal-core --dataset ../../tests/memory-benchmark/datasets/universal_core.jsonl --backend all --reindex --report ../../tests/memory-benchmark/reports/universal_core_baseline.json",
"benchmark:universal:robust": "node bin/awareness-local.mjs benchmark --project ../../tests/memory-benchmark/projects/universal-core --dataset ../../tests/memory-benchmark/datasets/universal_robust.jsonl --backend builtin --reindex --report ../../tests/memory-benchmark/reports/universal_robust_builtin.json --markdown-report ../../tests/memory-benchmark/reports/universal_robust_builtin.md",
"start": "node bin/awareness-local.mjs start",
"postinstall": "node install-transformers.mjs",
"prepublishOnly": "node scripts/prepublish-gate.mjs"
}
}