brainjar 0.0.1 → 0.1.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,10 +1,22 @@
1
1
  {
2
2
  "name": "brainjar",
3
- "version": "0.0.1",
4
- "description": "BrainJar - the memory platform for software projects. Your code shows what it does; BrainJar remembers why. CLI coming soon.",
5
- "bin": { "brainjar": "./bin/brainjar.js" },
6
- "files": ["bin", "README.md", "LICENSE"],
7
- "homepage": "https://ponytail.dev",
8
- "author": "ponytail (https://ponytail.dev)",
9
- "license": "SEE LICENSE IN LICENSE"
3
+ "version": "0.1.0",
4
+ "description": "BrainJar CLI: connect a repository to a BrainJar server (capture, hooks, MCP)",
5
+ "license": "SEE LICENSE ON https://ponytail.dev",
6
+ "author": "ponytailhq <ops@ponytail.dev>",
7
+ "homepage": "https://brainjar.dev",
8
+ "type": "module",
9
+ "bin": {
10
+ "brainjar": "dist/brainjar.js"
11
+ },
12
+ "files": [
13
+ "dist"
14
+ ],
15
+ "engines": {
16
+ "node": ">=20"
17
+ },
18
+ "scripts": {
19
+ "build": "node build.mjs",
20
+ "prepublishOnly": "node build.mjs"
21
+ }
10
22
  }
package/LICENSE DELETED
@@ -1,2 +0,0 @@
1
- Proprietary. All rights reserved.
2
- Copyright (c) 2026 Dietrich Gebert / ponytail.
package/bin/brainjar.js DELETED
@@ -1,3 +0,0 @@
1
- #!/usr/bin/env node
2
- console.log("BrainJar - the memory platform for software projects.");
3
- console.log("The CLI ships here soon. Until then: https://ponytail.dev");