opencode-plugin-mimic 0.1.4 → 0.1.6

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": "opencode-plugin-mimic",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "description": "An OpenCode plugin that learns from your patterns and adapts to your workflow. Mimic watches how you work, remembers across sessions, and suggests actions based on what you do repeatedly.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -48,7 +48,8 @@
48
48
  "dependencies": {
49
49
  "@opencode-ai/plugin": "latest",
50
50
  "@opencode-ai/sdk": "latest",
51
- "date-fns": "^4.1.0"
51
+ "date-fns": "^4.1.0",
52
+ "nanoid": "^5.1.6"
52
53
  },
53
54
  "devDependencies": {
54
55
  "@types/node": "^24",
@@ -63,7 +64,9 @@
63
64
  "scripts": {
64
65
  "build": "tsup",
65
66
  "dev": "tsup --watch",
66
- "test": "vitest",
67
- "test:coverage": "vitest run --coverage"
67
+ "test": "vitest --run",
68
+ "test:coverage": "vitest run --coverage",
69
+ "test:watch": "vitest",
70
+ "typecheck": "tsc --noEmit"
68
71
  }
69
72
  }