@memo-code/memo 0.5.13 → 0.6.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,9 +1,9 @@
1
1
  {
2
2
  "name": "@memo-code/memo",
3
- "version": "0.5.13",
3
+ "version": "0.6.0",
4
4
  "private": false,
5
5
  "type": "module",
6
- "description": "AI programming assistant with multi-turn conversations, tool calling, and concurrent execution",
6
+ "description": "A lightweight coding agent that runs in your terminal",
7
7
  "bin": {
8
8
  "memo": "./dist/index.js"
9
9
  },
@@ -45,6 +45,9 @@
45
45
  "start": "tsx packages/cli/src/index.tsx",
46
46
  "build": "tsup",
47
47
  "dev": "tsup --watch",
48
+ "web:dev": "pnpm --filter @memo-code/web dev",
49
+ "web:build": "pnpm --filter @memo-code/web build",
50
+ "web:start": "pnpm --filter @memo-code/web start",
48
51
  "format": "prettier --write .",
49
52
  "format:check": "prettier --check .",
50
53
  "test": "vitest run",