@illli-studio/mory 0.1.0 → 0.1.2

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.
Files changed (2) hide show
  1. package/bin/mory +2 -0
  2. package/package.json +3 -3
package/bin/mory ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ import "../src/cli.mjs";
package/package.json CHANGED
@@ -1,19 +1,19 @@
1
1
  {
2
2
  "name": "@illli-studio/mory",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "description": "Local-first memory runtime with a web console and MCP server.",
5
5
  "license": "AGPL-3.0-or-later",
6
6
  "publishConfig": { "access": "public" },
7
7
  "type": "module",
8
8
  "bin": {
9
- "mory": "./src/cli.mjs"
9
+ "mory": "./bin/mory"
10
10
  },
11
11
  "exports": {
12
12
  ".": { "types": "./client/index.d.ts", "import": "./client/index.js" },
13
13
  "./client": { "types": "./client/index.d.ts", "import": "./client/index.js" },
14
14
  "./package.json": "./package.json"
15
15
  },
16
- "files": ["src", "bundle", "client", "README.md"],
16
+ "files": ["bin", "src", "bundle", "client", "README.md"],
17
17
  "scripts": {
18
18
  "cli": "node src/cli.mjs",
19
19
  "start": "node src/cli.mjs start",