backbrain 1.1.1
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/LICENSE +21 -0
- package/README.md +497 -0
- package/dist/index.js +95794 -0
- package/dist/mcp-server.js +28722 -0
- package/dist/rezi_ui_native.darwin-arm64-xhnnex3m.node +0 -0
- package/dist/rezi_ui_native.darwin-x64-eqdka8v8.node +0 -0
- package/dist/rezi_ui_native.linux-arm64-gnu-tdtr0q84.node +0 -0
- package/dist/rezi_ui_native.linux-x64-gnu-w49c1xpp.node +0 -0
- package/dist/rezi_ui_native.win32-arm64-msvc-gzx8450t.node +0 -0
- package/dist/rezi_ui_native.win32-x64-msvc-gjkcr5w3.node +0 -0
- package/package.json +75 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "backbrain",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "1.1.1",
|
|
5
|
+
"description": "Backbrain (formerly flux-cap): keep a running memory of your work, searchable from the CLI and readable by your AI",
|
|
6
|
+
"bin": {
|
|
7
|
+
"bb": "./dist/index.js",
|
|
8
|
+
"backbrain": "./dist/index.js",
|
|
9
|
+
"flux": "./dist/index.js",
|
|
10
|
+
"flux-mcp": "./dist/mcp-server.ts"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"dist/**/*",
|
|
14
|
+
"README.md",
|
|
15
|
+
"LICENSE"
|
|
16
|
+
],
|
|
17
|
+
"scripts": {
|
|
18
|
+
"build": "bun build src/index.ts --outdir dist --target node --format esm --external @rezi-ui/core --external @rezi-ui/node --external @rezi-ui/jsx --external @rezi-ui/native && bun build src/mcp-server.ts --outdir dist --target node --format esm",
|
|
19
|
+
"dev": "bun run src/index.ts",
|
|
20
|
+
"prepublishOnly": "bun run build",
|
|
21
|
+
"publish": "npm publish --access=public",
|
|
22
|
+
"local-install": "bun run build && npm link",
|
|
23
|
+
"local-uninstall": "npm unlink -g flux-cap",
|
|
24
|
+
"local-reinstall": "bun run local-uninstall && bun run local-install",
|
|
25
|
+
"changeset": "changeset",
|
|
26
|
+
"changeset:add": "changeset add",
|
|
27
|
+
"changeset:status": "changeset status",
|
|
28
|
+
"changeset:version": "changeset version",
|
|
29
|
+
"changeset:publish": "changeset publish",
|
|
30
|
+
"format": "bunx --bun @biomejs/biome check --write"
|
|
31
|
+
},
|
|
32
|
+
"engines": {
|
|
33
|
+
"node": ">=18.0.0"
|
|
34
|
+
},
|
|
35
|
+
"keywords": [
|
|
36
|
+
"cli",
|
|
37
|
+
"productivity",
|
|
38
|
+
"adhd",
|
|
39
|
+
"git",
|
|
40
|
+
"context-switching",
|
|
41
|
+
"developer-journal",
|
|
42
|
+
"developer-tools",
|
|
43
|
+
"backbrain",
|
|
44
|
+
"notes",
|
|
45
|
+
"mcp"
|
|
46
|
+
],
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"@modelcontextprotocol/sdk": "^1.28.0",
|
|
49
|
+
"@rezi-ui/core": "^0.1.0-alpha.59",
|
|
50
|
+
"@rezi-ui/jsx": "^0.1.0-alpha.59",
|
|
51
|
+
"@rezi-ui/node": "^0.1.0-alpha.59",
|
|
52
|
+
"@types/react": "^19.2.14",
|
|
53
|
+
"@types/react-dom": "^19.2.3",
|
|
54
|
+
"commander": "^14.0.3",
|
|
55
|
+
"fuse.js": "^7.1.0",
|
|
56
|
+
"ink": "^6.8.0",
|
|
57
|
+
"ink-text-input": "^6.0.0",
|
|
58
|
+
"inquirer": "^13.2.5",
|
|
59
|
+
"react": "^19.2.4",
|
|
60
|
+
"react-devtools-core": "^7.0.1",
|
|
61
|
+
"react-dom": "^19.2.4",
|
|
62
|
+
"zod": "^4.3.6"
|
|
63
|
+
},
|
|
64
|
+
"devDependencies": {
|
|
65
|
+
"@biomejs/biome": "2.4.4",
|
|
66
|
+
"@changesets/cli": "^2.29.8",
|
|
67
|
+
"@types/inquirer": "^9.0.9",
|
|
68
|
+
"@types/node": "^25.3.3"
|
|
69
|
+
},
|
|
70
|
+
"repository": {
|
|
71
|
+
"type": "git",
|
|
72
|
+
"url": "https://github.com/kaustubh285/flux-cap"
|
|
73
|
+
},
|
|
74
|
+
"license": "MIT"
|
|
75
|
+
}
|