agent-rules-init 0.2.1 → 0.4.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.
Files changed (42) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +21 -0
  3. package/dist/cli.d.ts +38 -1
  4. package/dist/cli.js +203 -40
  5. package/dist/core/canonical-commands.d.ts +4 -0
  6. package/dist/core/canonical-commands.js +169 -0
  7. package/dist/core/config.d.ts +25 -0
  8. package/dist/core/config.js +125 -0
  9. package/dist/core/i18n.d.ts +47 -0
  10. package/dist/core/i18n.js +207 -0
  11. package/dist/core/llm-bridge.d.ts +5 -1
  12. package/dist/core/llm-bridge.js +56 -4
  13. package/dist/core/project-unit-output.d.ts +13 -0
  14. package/dist/core/project-unit-output.js +25 -0
  15. package/dist/core/project-units.d.ts +16 -0
  16. package/dist/core/project-units.js +95 -0
  17. package/dist/core/prompt-engine.d.ts +3 -1
  18. package/dist/core/prompt-engine.js +19 -14
  19. package/dist/core/repo-facts.d.ts +30 -0
  20. package/dist/core/repo-facts.js +420 -0
  21. package/dist/core/scanner.js +153 -27
  22. package/dist/core/templates.d.ts +6 -4
  23. package/dist/core/templates.js +127 -29
  24. package/dist/core/types.d.ts +84 -2
  25. package/dist/core/writer.d.ts +1 -1
  26. package/dist/core/writer.js +6 -4
  27. package/dist/packs/cpp.js +33 -27
  28. package/dist/packs/csharp.js +32 -27
  29. package/dist/packs/dart.js +30 -31
  30. package/dist/packs/elixir.js +31 -27
  31. package/dist/packs/go.js +31 -27
  32. package/dist/packs/java.js +82 -30
  33. package/dist/packs/js-ts.js +150 -37
  34. package/dist/packs/kotlin.js +56 -31
  35. package/dist/packs/php.js +30 -27
  36. package/dist/packs/python.js +107 -34
  37. package/dist/packs/r.js +30 -27
  38. package/dist/packs/ruby.js +36 -27
  39. package/dist/packs/rust.js +33 -27
  40. package/dist/packs/scala.js +32 -27
  41. package/dist/packs/swift.js +31 -27
  42. package/package.json +7 -4
package/dist/packs/r.js CHANGED
@@ -1,3 +1,4 @@
1
+ import { refactorBody, reviewBody, runTestsConvention, summarySentence, testingBody, } from "../core/i18n.js";
1
2
  const FRAMEWORKS = [
2
3
  ["shiny", "shiny"],
3
4
  ["plumber", "plumber"],
@@ -22,39 +23,41 @@ function detect(signals) {
22
23
  : { value: "CRAN", confidence: "low" };
23
24
  return { packId: "r", language: "R", framework, testRunner, packageManager };
24
25
  }
25
- function rules(detection) {
26
- const framework = detection.framework?.value ?? "none";
27
- return {
28
- summary: `Proyecto R${framework !== "none" ? ` con ${framework}` : ""} (${detection.packageManager?.value}).`,
29
- conventions: [
30
- "Sigue la guía de estilo tidyverse (style.tidyverse.org) salvo que el proyecto ya use otra.",
31
- `Ejecuta los tests con ${detection.testRunner?.value === "testthat" ? "testthat::test_dir(\"tests\")" : "el test runner del proyecto"} antes de terminar una tarea.`,
32
- "Declara toda dependencia nueva en DESCRIPTION y actualiza renv.lock si el proyecto usa renv.",
33
- ],
34
- architectureNotes: [
26
+ const TEXTS = {
27
+ es: {
28
+ style: "Sigue la guía de estilo tidyverse (style.tidyverse.org) salvo que el proyecto ya use otra.",
29
+ deps: "Declara toda dependencia nueva en DESCRIPTION y actualiza renv.lock si el proyecto usa renv.",
30
+ arch: [
35
31
  "Mantén las funciones puras y con una responsabilidad clara; evita modificar el entorno global.",
36
32
  "Separa el análisis/scripts de la lógica reutilizable empaquetada en funciones.",
37
33
  ],
34
+ },
35
+ en: {
36
+ style: "Follow the tidyverse style guide (style.tidyverse.org) unless the project already uses another one.",
37
+ deps: "Declare every new dependency in DESCRIPTION and update renv.lock if the project uses renv.",
38
+ arch: [
39
+ "Keep functions pure and single-purpose; avoid mutating the global environment.",
40
+ "Separate analysis/scripts from reusable logic packaged as functions.",
41
+ ],
42
+ },
43
+ };
44
+ function rules(detection, lang) {
45
+ const t = TEXTS[lang];
46
+ const framework = detection.framework?.value !== "none" ? detection.framework?.value : undefined;
47
+ const testCmd = detection.testRunner?.value === "testthat" ? 'testthat::test_dir("tests")' : undefined;
48
+ return {
49
+ summary: summarySentence(lang, "R", framework, detection.packageManager?.value),
50
+ conventions: [t.style, runTestsConvention(lang, testCmd), t.deps],
51
+ architectureNotes: t.arch,
38
52
  };
39
53
  }
40
- function promptTemplates(detection) {
41
- const framework = detection.framework?.value ?? "el framework del proyecto";
54
+ function promptTemplates(detection, lang) {
55
+ const framework = detection.framework?.value !== "none" ? detection.framework?.value : undefined;
56
+ const runner = detection.testRunner?.value !== "unknown" ? detection.testRunner?.value : undefined;
42
57
  return [
43
- {
44
- id: "review",
45
- title: "Code Review (R)",
46
- body: `Revisa el diff actual buscando bugs y desviaciones de las convenciones de ${framework}. Señala solo problemas concretos con línea de archivo.`,
47
- },
48
- {
49
- id: "refactor",
50
- title: "Refactor (R)",
51
- body: `Propón refactors que reduzcan duplicación y mejoren la legibilidad sin cambiar comportamiento observable.`,
52
- },
53
- {
54
- id: "testing",
55
- title: "Testing (R)",
56
- body: `Escribe tests con ${detection.testRunner?.value !== "unknown" ? detection.testRunner?.value : "el test runner del proyecto"} para el código señalado. Cubre el camino feliz y al menos un caso límite.`,
57
- },
58
+ { id: "review", title: "Code Review (R)", body: reviewBody(lang, "", framework) },
59
+ { id: "refactor", title: "Refactor (R)", body: refactorBody(lang) },
60
+ { id: "testing", title: "Testing (R)", body: testingBody(lang, runner) },
58
61
  ];
59
62
  }
60
63
  export const rPack = { id: "r", detect, rules, promptTemplates };
@@ -1,3 +1,4 @@
1
+ import { refactorBody, reviewBody, runTestsConvention, summarySentence, testingBody, } from "../core/i18n.js";
1
2
  function detect(signals) {
2
3
  const source = signals.gemfile;
3
4
  if (!source)
@@ -21,39 +22,47 @@ function detect(signals) {
21
22
  packageManager: { value: "bundler", confidence: "high" },
22
23
  };
23
24
  }
24
- function rules(detection) {
25
- const framework = detection.framework?.value ?? "none";
26
- return {
27
- summary: `Proyecto Ruby${framework !== "none" ? ` con ${framework}` : ""} (bundler).`,
28
- conventions: [
29
- "Sigue la guía de estilo Ruby estándar (snake_case para métodos/variables, CamelCase para clases).",
30
- `Ejecuta los tests con ${detection.testRunner?.value === "rspec" ? "bundle exec rspec" : detection.testRunner?.value === "minitest" ? "bundle exec rake test" : "el test runner del proyecto"} antes de terminar una tarea.`,
31
- "Declara toda dependencia nueva en el Gemfile, nunca instales una gema sin registrarla.",
32
- ],
33
- architectureNotes: [
25
+ const TEXTS = {
26
+ es: {
27
+ style: "Sigue la guía de estilo Ruby estándar (snake_case para métodos/variables, CamelCase para clases).",
28
+ deps: "Declara toda dependencia nueva en el Gemfile, nunca instales una gema sin registrarla.",
29
+ arch: [
34
30
  "Respeta la estructura MVC del framework si el proyecto ya la sigue.",
35
31
  "Evita lógica de negocio en los controladores cuando el proyecto ya use capas de servicio.",
36
32
  ],
33
+ },
34
+ en: {
35
+ style: "Follow the standard Ruby style guide (snake_case for methods/variables, CamelCase for classes).",
36
+ deps: "Declare every new dependency in the Gemfile; never install a gem without registering it.",
37
+ arch: [
38
+ "Respect the framework's MVC structure if the project already follows it.",
39
+ "Avoid business logic in controllers when the project already uses service layers.",
40
+ ],
41
+ },
42
+ };
43
+ function testCommand(detection) {
44
+ if (detection.testRunner?.value === "rspec")
45
+ return "bundle exec rspec";
46
+ if (detection.testRunner?.value === "minitest")
47
+ return "bundle exec rake test";
48
+ return undefined;
49
+ }
50
+ function rules(detection, lang) {
51
+ const t = TEXTS[lang];
52
+ const framework = detection.framework?.value !== "none" ? detection.framework?.value : undefined;
53
+ return {
54
+ summary: summarySentence(lang, "Ruby", framework, "bundler"),
55
+ conventions: [t.style, runTestsConvention(lang, testCommand(detection)), t.deps],
56
+ architectureNotes: t.arch,
37
57
  };
38
58
  }
39
- function promptTemplates(detection) {
40
- const framework = detection.framework?.value ?? "el framework del proyecto";
59
+ function promptTemplates(detection, lang) {
60
+ const framework = detection.framework?.value !== "none" ? detection.framework?.value : undefined;
61
+ const runner = detection.testRunner?.value !== "unknown" ? detection.testRunner?.value : undefined;
41
62
  return [
42
- {
43
- id: "review",
44
- title: "Code Review (Ruby)",
45
- body: `Revisa el diff actual buscando bugs y desviaciones de las convenciones de ${framework}. Señala solo problemas concretos con línea de archivo.`,
46
- },
47
- {
48
- id: "refactor",
49
- title: "Refactor (Ruby)",
50
- body: `Propón refactors que reduzcan duplicación y mejoren la legibilidad sin cambiar comportamiento observable.`,
51
- },
52
- {
53
- id: "testing",
54
- title: "Testing (Ruby)",
55
- body: `Escribe tests con ${detection.testRunner?.value !== "unknown" ? detection.testRunner?.value : "el test runner del proyecto"} para el código señalado. Cubre el camino feliz y al menos un caso límite.`,
56
- },
63
+ { id: "review", title: "Code Review (Ruby)", body: reviewBody(lang, "", framework) },
64
+ { id: "refactor", title: "Refactor (Ruby)", body: refactorBody(lang) },
65
+ { id: "testing", title: "Testing (Ruby)", body: testingBody(lang, runner) },
57
66
  ];
58
67
  }
59
68
  export const rubyPack = { id: "ruby", detect, rules, promptTemplates };
@@ -1,3 +1,4 @@
1
+ import { refactorBody, reviewBody, runTestsConvention, summarySentence, testingBody, } from "../core/i18n.js";
1
2
  const FRAMEWORKS = [
2
3
  ["actix-web", "actix-web"],
3
4
  ["axum", "axum"],
@@ -23,39 +24,44 @@ function detect(signals) {
23
24
  packageManager: { value: "cargo", confidence: "high" },
24
25
  };
25
26
  }
26
- function rules(detection) {
27
- const framework = detection.framework?.value ?? "none";
28
- return {
29
- summary: `Proyecto Rust${framework !== "none" ? ` con ${framework}` : ""} (cargo).`,
30
- conventions: [
31
- "Sigue el formato estándar de `rustfmt`; corre `cargo clippy` para detectar problemas idiomáticos.",
32
- "Ejecuta los tests con `cargo test` antes de terminar una tarea.",
33
- "Evita `unwrap()`/`expect()` en código de producción salvo que la invariante esté justificada.",
34
- ],
35
- architectureNotes: [
27
+ const TEXTS = {
28
+ es: {
29
+ style: "Sigue el formato estándar de `rustfmt`; corre `cargo clippy` para detectar problemas idiomáticos.",
30
+ unwrap: "Evita `unwrap()`/`expect()` en código de producción salvo que la invariante esté justificada.",
31
+ arch: [
36
32
  "Mantén los módulos con una responsabilidad clara; usa `mod.rs` o archivos de módulo con nombre explícito según lo que ya use el repo.",
37
33
  "Declara toda dependencia nueva en Cargo.toml y mantén Cargo.lock sincronizado.",
38
34
  ],
35
+ reviewFocus: "usos innecesarios de `unwrap()`/`clone()`",
36
+ refactorExtra: "Respeta el sistema de ownership existente.",
37
+ },
38
+ en: {
39
+ style: "Follow the standard `rustfmt` formatting; run `cargo clippy` to catch idiomatic issues.",
40
+ unwrap: "Avoid `unwrap()`/`expect()` in production code unless the invariant is justified.",
41
+ arch: [
42
+ "Keep modules single-purpose; use `mod.rs` or explicitly named module files following what the repo already uses.",
43
+ "Declare every new dependency in Cargo.toml and keep Cargo.lock in sync.",
44
+ ],
45
+ reviewFocus: "unnecessary uses of `unwrap()`/`clone()`",
46
+ refactorExtra: "Respect the existing ownership model.",
47
+ },
48
+ };
49
+ function rules(detection, lang) {
50
+ const t = TEXTS[lang];
51
+ const framework = detection.framework?.value !== "none" ? detection.framework?.value : undefined;
52
+ return {
53
+ summary: summarySentence(lang, "Rust", framework, "cargo"),
54
+ conventions: [t.style, runTestsConvention(lang, "`cargo test`"), t.unwrap],
55
+ architectureNotes: t.arch,
39
56
  };
40
57
  }
41
- function promptTemplates(detection) {
42
- const framework = detection.framework?.value ?? "el framework del proyecto";
58
+ function promptTemplates(detection, lang) {
59
+ const t = TEXTS[lang];
60
+ const framework = detection.framework?.value !== "none" ? detection.framework?.value : undefined;
43
61
  return [
44
- {
45
- id: "review",
46
- title: "Code Review (Rust)",
47
- body: `Revisa el diff actual buscando bugs, usos innecesarios de \`unwrap()\`/\`clone()\` y desviaciones de las convenciones de ${framework}. Señala solo problemas concretos con línea de archivo.`,
48
- },
49
- {
50
- id: "refactor",
51
- title: "Refactor (Rust)",
52
- body: `Propón refactors que reduzcan duplicación y mejoren la legibilidad sin cambiar comportamiento observable. Respeta el sistema de ownership existente.`,
53
- },
54
- {
55
- id: "testing",
56
- title: "Testing (Rust)",
57
- body: `Escribe tests con \`cargo test\` para el código señalado. Cubre el camino feliz y al menos un caso límite.`,
58
- },
62
+ { id: "review", title: "Code Review (Rust)", body: reviewBody(lang, t.reviewFocus, framework) },
63
+ { id: "refactor", title: "Refactor (Rust)", body: refactorBody(lang, t.refactorExtra) },
64
+ { id: "testing", title: "Testing (Rust)", body: testingBody(lang, "`cargo test`") },
59
65
  ];
60
66
  }
61
67
  export const rustPack = { id: "rust", detect, rules, promptTemplates };
@@ -1,3 +1,4 @@
1
+ import { refactorBody, reviewBody, runTestsConvention, summarySentence, testingBody, } from "../core/i18n.js";
1
2
  const FRAMEWORKS = [
2
3
  ["playframework", "play"],
3
4
  ["akka-http", "akka"],
@@ -36,39 +37,43 @@ function detect(signals) {
36
37
  packageManager: { value: "sbt", confidence: "high" },
37
38
  };
38
39
  }
39
- function rules(detection) {
40
- const framework = detection.framework?.value ?? "none";
41
- return {
42
- summary: `Proyecto Scala${framework !== "none" ? ` con ${framework}` : ""} (sbt).`,
43
- conventions: [
44
- "Sigue la guía de estilo oficial de Scala; ejecuta `scalafmt` si el proyecto ya lo usa.",
45
- `Ejecuta los tests con \`sbt test\` antes de terminar una tarea.`,
46
- "Prefiere estructuras inmutables y funciones puras cuando el proyecto ya siga ese estilo.",
47
- ],
48
- architectureNotes: [
40
+ const TEXTS = {
41
+ es: {
42
+ style: "Sigue la guía de estilo oficial de Scala; ejecuta `scalafmt` si el proyecto ya lo usa.",
43
+ immutability: "Prefiere estructuras inmutables y funciones puras cuando el proyecto ya siga ese estilo.",
44
+ arch: [
49
45
  "Mantén los módulos con una responsabilidad clara; usa `case class` para modelos de datos.",
50
46
  "Declara toda dependencia nueva en `build.sbt`.",
51
47
  ],
48
+ reviewFocus: "usos innecesarios de mutabilidad",
49
+ },
50
+ en: {
51
+ style: "Follow the official Scala style guide; run `scalafmt` if the project already uses it.",
52
+ immutability: "Prefer immutable structures and pure functions when the project already follows that style.",
53
+ arch: [
54
+ "Keep modules single-purpose; use `case class` for data models.",
55
+ "Declare every new dependency in `build.sbt`.",
56
+ ],
57
+ reviewFocus: "unnecessary mutability",
58
+ },
59
+ };
60
+ function rules(detection, lang) {
61
+ const t = TEXTS[lang];
62
+ const framework = detection.framework?.value !== "none" ? detection.framework?.value : undefined;
63
+ return {
64
+ summary: summarySentence(lang, "Scala", framework, "sbt"),
65
+ conventions: [t.style, runTestsConvention(lang, "`sbt test`"), t.immutability],
66
+ architectureNotes: t.arch,
52
67
  };
53
68
  }
54
- function promptTemplates(detection) {
55
- const framework = detection.framework?.value ?? "el framework del proyecto";
69
+ function promptTemplates(detection, lang) {
70
+ const t = TEXTS[lang];
71
+ const framework = detection.framework?.value !== "none" ? detection.framework?.value : undefined;
72
+ const runner = detection.testRunner?.value !== "unknown" ? detection.testRunner?.value : undefined;
56
73
  return [
57
- {
58
- id: "review",
59
- title: "Code Review (Scala)",
60
- body: `Revisa el diff actual buscando bugs, usos innecesarios de mutabilidad y desviaciones de las convenciones de ${framework}. Señala solo problemas concretos con línea de archivo.`,
61
- },
62
- {
63
- id: "refactor",
64
- title: "Refactor (Scala)",
65
- body: `Propón refactors que reduzcan duplicación y mejoren la legibilidad sin cambiar comportamiento observable.`,
66
- },
67
- {
68
- id: "testing",
69
- title: "Testing (Scala)",
70
- body: `Escribe tests con ${detection.testRunner?.value !== "unknown" ? detection.testRunner?.value : "el test runner del proyecto"} para el código señalado. Cubre el camino feliz y al menos un caso límite.`,
71
- },
74
+ { id: "review", title: "Code Review (Scala)", body: reviewBody(lang, t.reviewFocus, framework) },
75
+ { id: "refactor", title: "Refactor (Scala)", body: refactorBody(lang) },
76
+ { id: "testing", title: "Testing (Scala)", body: testingBody(lang, runner) },
72
77
  ];
73
78
  }
74
79
  export const scalaPack = { id: "scala", detect, rules, promptTemplates };
@@ -1,3 +1,4 @@
1
+ import { refactorBody, reviewBody, runTestsConvention, summarySentence, testingBody, } from "../core/i18n.js";
1
2
  function detect(signals) {
2
3
  const source = signals.packageSwift;
3
4
  if (!source)
@@ -20,39 +21,42 @@ function detect(signals) {
20
21
  packageManager: { value: "swift package manager", confidence: "high" },
21
22
  };
22
23
  }
23
- function rules(detection) {
24
- const framework = detection.framework?.value ?? "none";
25
- return {
26
- summary: `Proyecto Swift${framework !== "none" ? ` con ${framework}` : ""} (Swift Package Manager).`,
27
- conventions: [
28
- "Sigue la guía de estilo de la API de Swift (swift.org/documentation/api-design-guidelines).",
29
- "Ejecuta los tests con `swift test` antes de terminar una tarea.",
30
- "Declara toda dependencia nueva en Package.swift, nunca la añadas solo en Xcode.",
31
- ],
32
- architectureNotes: [
24
+ const TEXTS = {
25
+ es: {
26
+ style: "Sigue la guía de estilo de la API de Swift (swift.org/documentation/api-design-guidelines).",
27
+ deps: "Declara toda dependencia nueva en Package.swift, nunca la añadas solo en Xcode.",
28
+ arch: [
33
29
  "Prefiere `struct` sobre `class` salvo que se necesite semántica de referencia.",
34
30
  "Evita forzar el desenvuelto de opcionales (`!`) fuera de contextos donde la invariante esté garantizada.",
35
31
  ],
32
+ reviewFocus: "desenvueltos forzados de opcionales",
33
+ },
34
+ en: {
35
+ style: "Follow the Swift API design guidelines (swift.org/documentation/api-design-guidelines).",
36
+ deps: "Declare every new dependency in Package.swift; never add it only in Xcode.",
37
+ arch: [
38
+ "Prefer `struct` over `class` unless reference semantics are needed.",
39
+ "Avoid force-unwrapping optionals (`!`) outside contexts where the invariant is guaranteed.",
40
+ ],
41
+ reviewFocus: "force-unwrapped optionals",
42
+ },
43
+ };
44
+ function rules(detection, lang) {
45
+ const t = TEXTS[lang];
46
+ const framework = detection.framework?.value !== "none" ? detection.framework?.value : undefined;
47
+ return {
48
+ summary: summarySentence(lang, "Swift", framework, "Swift Package Manager"),
49
+ conventions: [t.style, runTestsConvention(lang, "`swift test`"), t.deps],
50
+ architectureNotes: t.arch,
36
51
  };
37
52
  }
38
- function promptTemplates(detection) {
39
- const framework = detection.framework?.value ?? "el framework del proyecto";
53
+ function promptTemplates(detection, lang) {
54
+ const t = TEXTS[lang];
55
+ const framework = detection.framework?.value !== "none" ? detection.framework?.value : undefined;
40
56
  return [
41
- {
42
- id: "review",
43
- title: "Code Review (Swift)",
44
- body: `Revisa el diff actual buscando bugs, desenvueltos forzados de opcionales y desviaciones de las convenciones de ${framework}. Señala solo problemas concretos con línea de archivo.`,
45
- },
46
- {
47
- id: "refactor",
48
- title: "Refactor (Swift)",
49
- body: `Propón refactors que reduzcan duplicación y mejoren la legibilidad sin cambiar comportamiento observable.`,
50
- },
51
- {
52
- id: "testing",
53
- title: "Testing (Swift)",
54
- body: `Escribe tests con \`swift test\` para el código señalado. Cubre el camino feliz y al menos un caso límite.`,
55
- },
57
+ { id: "review", title: "Code Review (Swift)", body: reviewBody(lang, t.reviewFocus, framework) },
58
+ { id: "refactor", title: "Refactor (Swift)", body: refactorBody(lang) },
59
+ { id: "testing", title: "Testing (Swift)", body: testingBody(lang, "`swift test`") },
56
60
  ];
57
61
  }
58
62
  export const swiftPack = { id: "swift", detect, rules, promptTemplates };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-rules-init",
3
- "version": "0.2.1",
3
+ "version": "0.4.0",
4
4
  "description": "Generates CLAUDE.md, AGENTS.md, copilot-instructions.md and prompt files from what your repo actually is.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -10,11 +10,13 @@
10
10
  "agent-rules-init": "dist/bin.js"
11
11
  },
12
12
  "files": [
13
- "dist"
13
+ "dist",
14
+ "README.md",
15
+ "LICENSE"
14
16
  ],
15
17
  "repository": {
16
18
  "type": "git",
17
- "url": "https://github.com/racama29/agent-rules-init.git",
19
+ "url": "git+https://github.com/racama29/agent-rules-init.git",
18
20
  "directory": "packages/cli"
19
21
  },
20
22
  "homepage": "https://github.com/racama29/agent-rules-init#readme",
@@ -39,7 +41,8 @@
39
41
  "lint": "tsc -p tsconfig.json --noEmit"
40
42
  },
41
43
  "dependencies": {
42
- "@clack/prompts": "^0.9.1"
44
+ "@clack/prompts": "^0.9.1",
45
+ "yaml": "^2.9.0"
43
46
  },
44
47
  "devDependencies": {
45
48
  "typescript": "^5.6.0",