-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.17 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
{
"name": "@ngo-a/native-memory-citations",
"version": "2026.6.18",
"type": "module",
"description": "Cited, access-bounded local-memory retrieval for OpenClaw: access boundary, redaction, citations, and opt-in enhanced memory sidecars.",
"license": "MIT",
"publishConfig": {
"access": "public",
"provenance": true
},
"author": "NGO-A <ngo-a@users.noreply.github.com>",
"homepage": "https://github.com/NGO-A/native-memory-citations#readme",
"repository": {
"type": "git",
"url": "https://github.com/NGO-A/native-memory-citations"
},
"bugs": {
"url": "https://github.com/NGO-A/native-memory-citations/issues"
},
"keywords": [
"openclaw-plugin",
"memory",
"citations",
"search",
"retrieval"
],
"openclaw": {
"extensions": [
"./dist/index.js"
],
"compat": {
"pluginApi": ">=2026.6.8",
"minGatewayVersion": "2026.6.8"
},
"build": {
"openclawVersion": "2026.6.8",
"pluginSdkVersion": "2026.6.8"
}
},
"files": [
"dist",
"openclaw.plugin.json",
"README.md"
],
"engines": {
"node": ">=22.19.0"
},
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"build": "npm run clean && tsc -p tsconfig.json",
"prepublishOnly": "npm run build",
"plugin:build": "npm run build && openclaw plugins build --entry ./dist/index.js",
"plugin:build:check": "npm run build && openclaw plugins build --entry ./dist/index.js --check",
"plugin:validate": "npm run plugin:build && openclaw plugins validate --entry ./dist/index.js",
"test": "vitest run --dir src --no-file-parallelism",
"test:typecheck": "tsc -p tsconfig.test.json --noEmit",
"test:coverage": "vitest run --dir src --no-file-parallelism --coverage",
"test:pack": "node scripts/tarball-smoke.mjs",
"test:stress": "vitest run src/bounded-invariants.test.ts src/stress-soak.test.ts --no-file-parallelism"
},
"devDependencies": {
"@types/node": "^22.19.0",
"@vitest/coverage-v8": "3.2.6",
"openclaw": "2026.6.9",
"typescript": "^5.9.0",
"vitest": "^3.2.0"
},
"peerDependencies": {
"openclaw": ">=2026.6.8"
}
}