@andespindola/brainlink 0.1.0-alpha.8 → 0.1.0-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@andespindola/brainlink",
3
- "version": "0.1.0-alpha.8",
3
+ "version": "0.1.0-beta.0",
4
4
  "description": "Local-first knowledge memory for agents with Markdown, backlinks, indexing and context retrieval.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -30,6 +30,7 @@
30
30
  },
31
31
  "files": [
32
32
  "dist",
33
+ "assets",
33
34
  "README.md",
34
35
  "LICENSE",
35
36
  "CHANGELOG.md",
@@ -43,9 +44,11 @@
43
44
  },
44
45
  "scripts": {
45
46
  "clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
46
- "build": "npm run clean && tsc -p tsconfig.json",
47
+ "build": "npm run clean && npx --yes snyk test && tsc -p tsconfig.json",
47
48
  "dev": "tsx src/cli/main.ts",
48
49
  "dev:mcp": "tsx src/mcp/main.ts",
50
+ "brainlink:sync": "bash scripts/brainlink-sync.sh",
51
+ "security": "npx --yes snyk test",
49
52
  "test": "vitest run --config vitest.config.ts",
50
53
  "check": "npm run build && npm run test",
51
54
  "benchmark:large": "tsx src/benchmarks/large-vault.ts",
@@ -53,6 +56,7 @@
53
56
  "pack:smoke": "npm pack --dry-run"
54
57
  },
55
58
  "dependencies": {
59
+ "@aws-sdk/client-s3": "^3.1038.0",
56
60
  "@modelcontextprotocol/sdk": "^1.29.0",
57
61
  "better-sqlite3": "^12.9.0",
58
62
  "commander": "^14.0.2",