create-chronicler-grimoire 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/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Chronicler community
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/bin.mjs ADDED
@@ -0,0 +1,136 @@
1
+ #!/usr/bin/env node
2
+ // create-chronicler-grimoire โ€” scaffold a new Chronicler Grimoire plugin.
3
+ //
4
+ // npx create-chronicler-grimoire my-plugin
5
+ //
6
+ // Interactive prompts for the manifest fields, picks a template based on
7
+ // which surfaces the plugin will use, writes the scaffold to ./<name>/,
8
+ // runs npm install. From `npx ...` to "edit index.ts and install" should
9
+ // be under 60 seconds.
10
+
11
+ import fs from "node:fs/promises";
12
+ import { existsSync } from "node:fs";
13
+ import path from "node:path";
14
+ import { fileURLToPath } from "node:url";
15
+ import readline from "node:readline/promises";
16
+ import { spawn } from "node:child_process";
17
+
18
+ const __dirname = path.dirname(fileURLToPath(import.meta.url));
19
+ const TEMPLATES_DIR = path.join(__dirname, "templates");
20
+
21
+ const rl = readline.createInterface({
22
+ input: process.stdin,
23
+ output: process.stdout,
24
+ });
25
+
26
+ async function ask(question, defaultValue) {
27
+ const suffix = defaultValue ? ` (${defaultValue})` : "";
28
+ const answer = (await rl.question(`${question}${suffix}: `)).trim();
29
+ return answer || defaultValue || "";
30
+ }
31
+
32
+ async function askChoice(question, choices) {
33
+ const list = choices.map((c, i) => ` ${i + 1}) ${c}`).join("\n");
34
+ const answer = await rl.question(`${question}\n${list}\nChoice (1-${choices.length}): `);
35
+ const idx = parseInt(answer.trim(), 10) - 1;
36
+ if (idx < 0 || idx >= choices.length) {
37
+ console.log("Invalid choice, defaulting to first option.");
38
+ return choices[0];
39
+ }
40
+ return choices[idx];
41
+ }
42
+
43
+ function slug(s) {
44
+ return s.toLowerCase().replace(/[^a-z0-9-]+/g, "-").replace(/^-+|-+$/g, "");
45
+ }
46
+
47
+ async function copyTemplate(src, dest, replacements) {
48
+ const entries = await fs.readdir(src, { withFileTypes: true });
49
+ for (const entry of entries) {
50
+ const srcPath = path.join(src, entry.name);
51
+ const destPath = path.join(dest, applyReplacements(entry.name, replacements));
52
+ if (entry.isDirectory()) {
53
+ await fs.mkdir(destPath, { recursive: true });
54
+ await copyTemplate(srcPath, destPath, replacements);
55
+ } else {
56
+ const content = await fs.readFile(srcPath, "utf8");
57
+ await fs.writeFile(destPath, applyReplacements(content, replacements));
58
+ }
59
+ }
60
+ }
61
+
62
+ function applyReplacements(s, replacements) {
63
+ let out = s;
64
+ for (const [key, value] of Object.entries(replacements)) {
65
+ out = out.replaceAll(`{{${key}}}`, value);
66
+ }
67
+ return out;
68
+ }
69
+
70
+ async function main() {
71
+ const argv = process.argv.slice(2);
72
+ const initialName = argv[0];
73
+
74
+ console.log("\nโš— create-chronicler-grimoire\n");
75
+
76
+ const name = await ask("Plugin directory name", initialName ?? "my-grimoire");
77
+ const targetDir = path.resolve(process.cwd(), name);
78
+ if (existsSync(targetDir)) {
79
+ console.error(`โœ— Directory ${targetDir} already exists. Pick a different name.`);
80
+ rl.close();
81
+ process.exit(1);
82
+ }
83
+
84
+ const id = await ask("Plugin id (reverse-DNS)", `io.example.${slug(name)}`);
85
+ const displayName = await ask("Display name", name.replace(/[-_]/g, " "));
86
+ const description = await ask("One-line description", `${displayName} โ€” a Chronicler Grimoire plugin`);
87
+ const author = await ask("Author", "");
88
+ const license = await ask("License", "MIT");
89
+
90
+ const template = await askChoice("Pick a template", [
91
+ "hook-only (afterChat observer)",
92
+ "slash-command (with /command)",
93
+ "ui-slot (inspector:tab React component)",
94
+ "full (hook + slash + UI)",
95
+ ]);
96
+ const templateKey = template.split(" ")[0]; // hook-only / slash-command / ui-slot / full
97
+
98
+ const replacements = {
99
+ PLUGIN_ID: id,
100
+ PLUGIN_NAME: displayName,
101
+ PLUGIN_DESCRIPTION: description,
102
+ PLUGIN_AUTHOR: author,
103
+ PLUGIN_LICENSE: license,
104
+ };
105
+
106
+ console.log(`\nScaffolding ${targetDir}โ€ฆ`);
107
+ await fs.mkdir(targetDir, { recursive: true });
108
+ await copyTemplate(path.join(TEMPLATES_DIR, templateKey), targetDir, replacements);
109
+
110
+ console.log(`โœ“ Scaffold written.\n`);
111
+ console.log(`Next steps:`);
112
+ console.log(` cd ${name}`);
113
+ console.log(` npm install`);
114
+ console.log(` # edit index.ts`);
115
+ console.log(` cp -r . ~/.chronicler/plugins/${name} # install locally`);
116
+ console.log(` # or push to github and use the Browse Grimoire UI to install via URL\n`);
117
+
118
+ const install = (await ask("Run npm install now? (y/n)", "y")).toLowerCase();
119
+ if (install === "y" || install === "yes") {
120
+ await new Promise((resolve) => {
121
+ const child = spawn("npm", ["install"], {
122
+ cwd: targetDir,
123
+ stdio: "inherit",
124
+ });
125
+ child.on("close", resolve);
126
+ });
127
+ }
128
+
129
+ rl.close();
130
+ }
131
+
132
+ main().catch((e) => {
133
+ console.error(e);
134
+ rl.close();
135
+ process.exit(1);
136
+ });
package/package.json ADDED
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "create-chronicler-grimoire",
3
+ "version": "0.1.0",
4
+ "description": "Scaffold a new Chronicler Grimoire plugin in seconds",
5
+ "bin": {
6
+ "create-chronicler-grimoire": "./bin.mjs"
7
+ },
8
+ "type": "module",
9
+ "files": [
10
+ "bin.mjs",
11
+ "templates"
12
+ ],
13
+ "keywords": ["chronicler", "grimoire", "scaffold", "cli"],
14
+ "license": "MIT",
15
+ "homepage": "https://github.com/yantrikos/chronicler/tree/main/packages/create-grimoire",
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "https://github.com/yantrikos/chronicler.git",
19
+ "directory": "packages/create-grimoire"
20
+ },
21
+ "engines": {
22
+ "node": ">=18"
23
+ }
24
+ }
@@ -0,0 +1,25 @@
1
+ interface Props {
2
+ pluginId: string;
3
+ characterId: string | null;
4
+ }
5
+
6
+ export function Panel({ pluginId, characterId }: Props) {
7
+ return (
8
+ <div className="h-full overflow-y-auto p-4 text-xs text-neutral-300">
9
+ <header className="mb-3">
10
+ <h2 className="text-sm font-semibold text-neutral-100 mb-0.5">
11
+ {{PLUGIN_NAME}}
12
+ </h2>
13
+ <p className="text-[11px] text-neutral-500">
14
+ Plugin <code className="text-emerald-400">{pluginId}</code>{" "}
15
+ {characterId && (
16
+ <>ยท active: <code className="text-neutral-200">{characterId}</code></>
17
+ )}
18
+ </p>
19
+ </header>
20
+ <p className="text-neutral-400 leading-relaxed">
21
+ Edit <code>Panel.tsx</code> to make this panel useful.
22
+ </p>
23
+ </div>
24
+ );
25
+ }
@@ -0,0 +1,26 @@
1
+ # {{PLUGIN_NAME}}
2
+
3
+ {{PLUGIN_DESCRIPTION}}
4
+
5
+ A [Chronicler Grimoire](https://github.com/yantrikos/chronicler) plugin.
6
+
7
+ ## Install
8
+
9
+ Drop into your Chronicler plugins directory:
10
+
11
+ ```bash
12
+ git clone <repo-url> ~/.chronicler/plugins/{{PLUGIN_ID}}
13
+ ```
14
+
15
+ Or paste the repo URL into the Browse Grimoire modal in the Chronicler UI.
16
+
17
+ ## Develop
18
+
19
+ ```bash
20
+ npm install
21
+ # edit index.ts
22
+ ```
23
+
24
+ ## License
25
+
26
+ {{PLUGIN_LICENSE}}
@@ -0,0 +1,20 @@
1
+ {
2
+ "id": "{{PLUGIN_ID}}",
3
+ "name": "{{PLUGIN_NAME}}",
4
+ "version": "0.1.0",
5
+ "apiVersion": "^0.1.0",
6
+ "description": "{{PLUGIN_DESCRIPTION}}",
7
+ "author": "{{PLUGIN_AUTHOR}}",
8
+ "license": "{{PLUGIN_LICENSE}}",
9
+ "permissions": {
10
+ "network": [],
11
+ "filesystem": "plugin-data-only",
12
+ "llm": false,
13
+ "memory": false
14
+ },
15
+ "contributes": {
16
+ "hooks": [{ "point": "afterWrite", "type": "observer" }],
17
+ "commands": ["status"],
18
+ "ui": { "slots": ["inspector:tab"] }
19
+ }
20
+ }
@@ -0,0 +1,52 @@
1
+ import { defineGrimoire, type GrimoireManifest } from "@chronicler/grimoire";
2
+ import { Panel } from "./Panel";
3
+
4
+ export const manifest: GrimoireManifest = {
5
+ id: "{{PLUGIN_ID}}",
6
+ name: "{{PLUGIN_NAME}}",
7
+ version: "0.1.0",
8
+ apiVersion: "^0.1.0",
9
+ description: "{{PLUGIN_DESCRIPTION}}",
10
+ author: "{{PLUGIN_AUTHOR}}",
11
+ license: "{{PLUGIN_LICENSE}}",
12
+ permissions: {
13
+ network: [],
14
+ filesystem: "plugin-data-only",
15
+ llm: false,
16
+ memory: false,
17
+ },
18
+ contributes: {
19
+ hooks: [{ point: "afterWrite", type: "observer" }],
20
+ commands: ["status"],
21
+ ui: { slots: ["inspector:tab"] },
22
+ },
23
+ };
24
+
25
+ export default defineGrimoire({
26
+ id: "{{PLUGIN_ID}}",
27
+
28
+ setup(ctx) {
29
+ let turnCount = 0;
30
+
31
+ ctx.hooks.afterWrite.observe(async (event, api) => {
32
+ turnCount++;
33
+ await api.storage.set("turnCount", turnCount);
34
+ });
35
+
36
+ ctx.commands.register({
37
+ name: "status",
38
+ description: "Show plugin status",
39
+ run: async (_args, api) => {
40
+ const count = (await api.storage.get<number>("turnCount")) ?? 0;
41
+ return {
42
+ kind: "system",
43
+ content: `๐Ÿ“Š {{PLUGIN_NAME}} has observed ${count} turn${count === 1 ? "" : "s"}`,
44
+ };
45
+ },
46
+ });
47
+
48
+ ctx.ui.registerSlot("inspector:tab", Panel, { title: "{{PLUGIN_NAME}}" });
49
+
50
+ return {};
51
+ },
52
+ });
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "{{PLUGIN_ID}}",
3
+ "version": "0.1.0",
4
+ "description": "{{PLUGIN_DESCRIPTION}}",
5
+ "type": "module",
6
+ "main": "index.ts",
7
+ "author": "{{PLUGIN_AUTHOR}}",
8
+ "license": "{{PLUGIN_LICENSE}}",
9
+ "devDependencies": {
10
+ "@chronicler/grimoire": "^0.1.0",
11
+ "typescript": "~5.8.3"
12
+ }
13
+ }
@@ -0,0 +1,26 @@
1
+ # {{PLUGIN_NAME}}
2
+
3
+ {{PLUGIN_DESCRIPTION}}
4
+
5
+ A [Chronicler Grimoire](https://github.com/yantrikos/chronicler) plugin.
6
+
7
+ ## Install
8
+
9
+ Drop into your Chronicler plugins directory:
10
+
11
+ ```bash
12
+ git clone <repo-url> ~/.chronicler/plugins/{{PLUGIN_ID}}
13
+ ```
14
+
15
+ Or paste the repo URL into the Browse Grimoire modal in the Chronicler UI.
16
+
17
+ ## Develop
18
+
19
+ ```bash
20
+ npm install
21
+ # edit index.ts
22
+ ```
23
+
24
+ ## License
25
+
26
+ {{PLUGIN_LICENSE}}
@@ -0,0 +1,18 @@
1
+ {
2
+ "id": "{{PLUGIN_ID}}",
3
+ "name": "{{PLUGIN_NAME}}",
4
+ "version": "0.1.0",
5
+ "apiVersion": "^0.1.0",
6
+ "description": "{{PLUGIN_DESCRIPTION}}",
7
+ "author": "{{PLUGIN_AUTHOR}}",
8
+ "license": "{{PLUGIN_LICENSE}}",
9
+ "permissions": {
10
+ "network": [],
11
+ "filesystem": "plugin-data-only",
12
+ "llm": false,
13
+ "memory": false
14
+ },
15
+ "contributes": {
16
+ "hooks": [{ "point": "afterChat", "type": "observer" }]
17
+ }
18
+ }
@@ -0,0 +1,40 @@
1
+ import { defineGrimoire, type GrimoireManifest } from "@chronicler/grimoire";
2
+
3
+ export const manifest: GrimoireManifest = {
4
+ id: "{{PLUGIN_ID}}",
5
+ name: "{{PLUGIN_NAME}}",
6
+ version: "0.1.0",
7
+ apiVersion: "^0.1.0",
8
+ description: "{{PLUGIN_DESCRIPTION}}",
9
+ author: "{{PLUGIN_AUTHOR}}",
10
+ license: "{{PLUGIN_LICENSE}}",
11
+ permissions: {
12
+ network: [],
13
+ filesystem: "plugin-data-only",
14
+ llm: false,
15
+ memory: false,
16
+ },
17
+ contributes: {
18
+ hooks: [{ point: "afterChat", type: "observer" }],
19
+ },
20
+ };
21
+
22
+ export default defineGrimoire({
23
+ id: "{{PLUGIN_ID}}",
24
+
25
+ setup(ctx) {
26
+ ctx.hooks.afterChat.observe(async (event, api) => {
27
+ // event.reply.content is the assistant reply.
28
+ // event.sessionId, event.character are also available.
29
+ api.logger.info(
30
+ `${event.character.name} replied (${event.reply.content.length} chars)`
31
+ );
32
+ });
33
+
34
+ return {
35
+ dispose() {
36
+ // Clean up timers / subscriptions here if any.
37
+ },
38
+ };
39
+ },
40
+ });
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "{{PLUGIN_ID}}",
3
+ "version": "0.1.0",
4
+ "description": "{{PLUGIN_DESCRIPTION}}",
5
+ "type": "module",
6
+ "main": "index.ts",
7
+ "author": "{{PLUGIN_AUTHOR}}",
8
+ "license": "{{PLUGIN_LICENSE}}",
9
+ "devDependencies": {
10
+ "@chronicler/grimoire": "^0.1.0",
11
+ "typescript": "~5.8.3"
12
+ }
13
+ }
@@ -0,0 +1,26 @@
1
+ # {{PLUGIN_NAME}}
2
+
3
+ {{PLUGIN_DESCRIPTION}}
4
+
5
+ A [Chronicler Grimoire](https://github.com/yantrikos/chronicler) plugin.
6
+
7
+ ## Install
8
+
9
+ Drop into your Chronicler plugins directory:
10
+
11
+ ```bash
12
+ git clone <repo-url> ~/.chronicler/plugins/{{PLUGIN_ID}}
13
+ ```
14
+
15
+ Or paste the repo URL into the Browse Grimoire modal in the Chronicler UI.
16
+
17
+ ## Develop
18
+
19
+ ```bash
20
+ npm install
21
+ # edit index.ts
22
+ ```
23
+
24
+ ## License
25
+
26
+ {{PLUGIN_LICENSE}}
@@ -0,0 +1,18 @@
1
+ {
2
+ "id": "{{PLUGIN_ID}}",
3
+ "name": "{{PLUGIN_NAME}}",
4
+ "version": "0.1.0",
5
+ "apiVersion": "^0.1.0",
6
+ "description": "{{PLUGIN_DESCRIPTION}}",
7
+ "author": "{{PLUGIN_AUTHOR}}",
8
+ "license": "{{PLUGIN_LICENSE}}",
9
+ "permissions": {
10
+ "network": [],
11
+ "filesystem": "plugin-data-only",
12
+ "llm": false,
13
+ "memory": false
14
+ },
15
+ "contributes": {
16
+ "commands": ["greet"]
17
+ }
18
+ }
@@ -0,0 +1,37 @@
1
+ import { defineGrimoire, type GrimoireManifest } from "@chronicler/grimoire";
2
+
3
+ export const manifest: GrimoireManifest = {
4
+ id: "{{PLUGIN_ID}}",
5
+ name: "{{PLUGIN_NAME}}",
6
+ version: "0.1.0",
7
+ apiVersion: "^0.1.0",
8
+ description: "{{PLUGIN_DESCRIPTION}}",
9
+ author: "{{PLUGIN_AUTHOR}}",
10
+ license: "{{PLUGIN_LICENSE}}",
11
+ permissions: {
12
+ network: [],
13
+ filesystem: "plugin-data-only",
14
+ llm: false,
15
+ memory: false,
16
+ },
17
+ contributes: {
18
+ commands: ["greet"],
19
+ },
20
+ };
21
+
22
+ export default defineGrimoire({
23
+ id: "{{PLUGIN_ID}}",
24
+
25
+ setup(ctx) {
26
+ ctx.commands.register({
27
+ name: "greet",
28
+ description: "Print a friendly greeting",
29
+ run: async (args, api) => {
30
+ const target = args.trim() || "there";
31
+ return { kind: "text", content: `Hello, ${target}! ๐Ÿ‘‹` };
32
+ },
33
+ });
34
+
35
+ return {};
36
+ },
37
+ });
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "{{PLUGIN_ID}}",
3
+ "version": "0.1.0",
4
+ "description": "{{PLUGIN_DESCRIPTION}}",
5
+ "type": "module",
6
+ "main": "index.ts",
7
+ "author": "{{PLUGIN_AUTHOR}}",
8
+ "license": "{{PLUGIN_LICENSE}}",
9
+ "devDependencies": {
10
+ "@chronicler/grimoire": "^0.1.0",
11
+ "typescript": "~5.8.3"
12
+ }
13
+ }
@@ -0,0 +1,25 @@
1
+ interface Props {
2
+ pluginId: string;
3
+ characterId: string | null;
4
+ }
5
+
6
+ export function Panel({ pluginId, characterId }: Props) {
7
+ return (
8
+ <div className="h-full overflow-y-auto p-4 text-xs text-neutral-300">
9
+ <header className="mb-3">
10
+ <h2 className="text-sm font-semibold text-neutral-100 mb-0.5">
11
+ {{PLUGIN_NAME}}
12
+ </h2>
13
+ <p className="text-[11px] text-neutral-500">
14
+ Plugin <code className="text-emerald-400">{pluginId}</code>{" "}
15
+ {characterId && (
16
+ <>ยท active: <code className="text-neutral-200">{characterId}</code></>
17
+ )}
18
+ </p>
19
+ </header>
20
+ <p className="text-neutral-400 leading-relaxed">
21
+ Edit <code>Panel.tsx</code> to make this panel useful.
22
+ </p>
23
+ </div>
24
+ );
25
+ }
@@ -0,0 +1,26 @@
1
+ # {{PLUGIN_NAME}}
2
+
3
+ {{PLUGIN_DESCRIPTION}}
4
+
5
+ A [Chronicler Grimoire](https://github.com/yantrikos/chronicler) plugin.
6
+
7
+ ## Install
8
+
9
+ Drop into your Chronicler plugins directory:
10
+
11
+ ```bash
12
+ git clone <repo-url> ~/.chronicler/plugins/{{PLUGIN_ID}}
13
+ ```
14
+
15
+ Or paste the repo URL into the Browse Grimoire modal in the Chronicler UI.
16
+
17
+ ## Develop
18
+
19
+ ```bash
20
+ npm install
21
+ # edit index.ts
22
+ ```
23
+
24
+ ## License
25
+
26
+ {{PLUGIN_LICENSE}}
@@ -0,0 +1,18 @@
1
+ {
2
+ "id": "{{PLUGIN_ID}}",
3
+ "name": "{{PLUGIN_NAME}}",
4
+ "version": "0.1.0",
5
+ "apiVersion": "^0.1.0",
6
+ "description": "{{PLUGIN_DESCRIPTION}}",
7
+ "author": "{{PLUGIN_AUTHOR}}",
8
+ "license": "{{PLUGIN_LICENSE}}",
9
+ "permissions": {
10
+ "network": [],
11
+ "filesystem": "plugin-data-only",
12
+ "llm": false,
13
+ "memory": false
14
+ },
15
+ "contributes": {
16
+ "ui": { "slots": ["inspector:tab"] }
17
+ }
18
+ }
@@ -0,0 +1,32 @@
1
+ import { defineGrimoire, type GrimoireManifest } from "@chronicler/grimoire";
2
+ import { Panel } from "./Panel";
3
+
4
+ export const manifest: GrimoireManifest = {
5
+ id: "{{PLUGIN_ID}}",
6
+ name: "{{PLUGIN_NAME}}",
7
+ version: "0.1.0",
8
+ apiVersion: "^0.1.0",
9
+ description: "{{PLUGIN_DESCRIPTION}}",
10
+ author: "{{PLUGIN_AUTHOR}}",
11
+ license: "{{PLUGIN_LICENSE}}",
12
+ permissions: {
13
+ network: [],
14
+ filesystem: "plugin-data-only",
15
+ llm: false,
16
+ memory: false,
17
+ },
18
+ contributes: {
19
+ ui: { slots: ["inspector:tab"] },
20
+ },
21
+ };
22
+
23
+ export default defineGrimoire({
24
+ id: "{{PLUGIN_ID}}",
25
+
26
+ setup(ctx) {
27
+ ctx.ui.registerSlot("inspector:tab", Panel, {
28
+ title: "{{PLUGIN_NAME}}",
29
+ });
30
+ return {};
31
+ },
32
+ });
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "{{PLUGIN_ID}}",
3
+ "version": "0.1.0",
4
+ "description": "{{PLUGIN_DESCRIPTION}}",
5
+ "type": "module",
6
+ "main": "index.ts",
7
+ "author": "{{PLUGIN_AUTHOR}}",
8
+ "license": "{{PLUGIN_LICENSE}}",
9
+ "devDependencies": {
10
+ "@chronicler/grimoire": "^0.1.0",
11
+ "typescript": "~5.8.3"
12
+ }
13
+ }