@mulmoclaude/accounting-plugin 1.0.1 → 1.0.3
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/README.md +20 -0
- package/package.json +24 -5
package/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# @mulmoclaude/accounting-plugin
|
|
2
|
+
|
|
3
|
+
Double-entry accounting plugin for MulmoClaude and MulmoTerminal. Three surfaces: ./shared (isomorphic enums/meta, browser-safe), ./vue (chat View/Preview + canvas app), ./server (createAccountingRouter — the workspace-file-backed backend, wired via dependency injection so it pulls zero host-only infra).
|
|
4
|
+
|
|
5
|
+
A plugin for [MulmoClaude](https://github.com/receptron/mulmoclaude) and [MulmoTerminal](https://github.com/receptron/mulmoterminal) — loaded by the host, not run standalone.
|
|
6
|
+
|
|
7
|
+
## Dev loop
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
yarn workspace @mulmoclaude/accounting-plugin run build
|
|
11
|
+
yarn workspace @mulmoclaude/accounting-plugin run test
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## Related projects
|
|
15
|
+
|
|
16
|
+
Used by both MulmoClaude and MulmoTerminal, and published from the MulmoClaude monorepo by [Receptron](https://github.com/receptron).
|
|
17
|
+
|
|
18
|
+
- **[MulmoClaude](https://github.com/receptron/mulmoclaude)** — an open-source AI assistant platform that runs on your own computer. Claude Code as the engine, a personal wiki for long-term memory, schema-driven collections for your data, and chat that summons the right GUI (markdown, charts, forms, spreadsheets, wikis) for each task.
|
|
19
|
+
- **[MulmoTerminal](https://github.com/receptron/mulmoterminal)** — a terminal-first cockpit for running many AI coding agents in parallel. One roster showing every session's summary and PR status, tmux-backed session persistence, git-worktree isolation, one-click PRs, and mobile push with remote reply.
|
|
20
|
+
- **[MulmoTerminal manual](https://receptron.github.io/mulmoterminal/)** — setup, workflows, feature reference, configuration, mobile notifications, and alternative / local model providers. Available in English and Japanese.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mulmoclaude/accounting-plugin",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Double-entry accounting plugin for MulmoClaude and MulmoTerminal. Three surfaces: ./shared (isomorphic enums/meta, browser-safe), ./vue (chat View/Preview + canvas app), ./server (createAccountingRouter — the workspace-file-backed backend, wired via dependency injection so it pulls zero host-only infra).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
"lint": "eslint src test"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@mulmoclaude/common": "^1.1.
|
|
41
|
-
"@mulmoclaude/core": "^1.
|
|
40
|
+
"@mulmoclaude/common": "^1.1.1",
|
|
41
|
+
"@mulmoclaude/core": "^1.5.0"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"express": "^5.2.1",
|
|
@@ -72,8 +72,27 @@
|
|
|
72
72
|
"typescript": "^6.0.3",
|
|
73
73
|
"vite": "^8.1.5",
|
|
74
74
|
"vue": "^3.5.40",
|
|
75
|
-
"vue-i18n": "11.4.7",
|
|
75
|
+
"vue-i18n": "^11.4.7",
|
|
76
76
|
"vue-tsc": "^3.3.8"
|
|
77
77
|
},
|
|
78
|
-
"license": "MIT"
|
|
78
|
+
"license": "MIT",
|
|
79
|
+
"homepage": "https://github.com/receptron/mulmoclaude/tree/main/packages/plugins/accounting-plugin#readme",
|
|
80
|
+
"repository": {
|
|
81
|
+
"type": "git",
|
|
82
|
+
"url": "git+https://github.com/receptron/mulmoclaude.git",
|
|
83
|
+
"directory": "packages/plugins/accounting-plugin"
|
|
84
|
+
},
|
|
85
|
+
"keywords": [
|
|
86
|
+
"accounting",
|
|
87
|
+
"double-entry",
|
|
88
|
+
"bookkeeping",
|
|
89
|
+
"mulmoclaude",
|
|
90
|
+
"mulmoclaude-plugin",
|
|
91
|
+
"gui-chat-protocol",
|
|
92
|
+
"claude-code",
|
|
93
|
+
"mulmoterminal"
|
|
94
|
+
],
|
|
95
|
+
"bugs": {
|
|
96
|
+
"url": "https://github.com/receptron/mulmoclaude/issues"
|
|
97
|
+
}
|
|
79
98
|
}
|