@saulwade/swl-ses 2.0.0 → 2.2.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 (97) hide show
  1. package/CLAUDE.md +196 -196
  2. package/README.md +579 -579
  3. package/agentes/_propose-step.md +90 -0
  4. package/agentes/implementador-swl.md +2 -0
  5. package/agentes/orquestador-swl.md +2 -0
  6. package/agentes/perfilador-usuario-swl.md +14 -1
  7. package/bin/swl-ses.js +64 -1
  8. package/comandos/swl/adoptar-proyecto.md +258 -255
  9. package/comandos/swl/aprender.md +828 -840
  10. package/comandos/swl/aprobar-plan.md +26 -37
  11. package/comandos/swl/autoresearch.md +12 -14
  12. package/comandos/swl/briefing.md +119 -0
  13. package/comandos/swl/checkpoint.md +10 -15
  14. package/comandos/swl/claudemd.md +239 -234
  15. package/comandos/swl/compactar.md +29 -2
  16. package/comandos/swl/configurar-ci.md +20 -19
  17. package/comandos/swl/cron.md +10 -12
  18. package/comandos/swl/discutir-fase.md +8 -5
  19. package/comandos/swl/ejecutar-fase.md +15 -2
  20. package/comandos/swl/evolucionar.md +6 -11
  21. package/comandos/swl/inbox.md +10 -10
  22. package/comandos/swl/modelo.md +7 -9
  23. package/comandos/swl/notificaciones.md +19 -116
  24. package/comandos/swl/nuevo-proyecto.md +205 -205
  25. package/comandos/swl/planear-fase.md +5 -3
  26. package/comandos/swl/release.md +46 -0
  27. package/comandos/swl/status.md +333 -279
  28. package/comandos/swl/verificar.md +817 -812
  29. package/habilidades/changelog-generator/scripts/parse-commits.js +6 -4
  30. package/habilidades/ejecutar-fase/SKILL.md +541 -518
  31. package/habilidades/planear-fase/SKILL.md +3 -2
  32. package/habilidades/swl-claudemd/SKILL.md +10 -6
  33. package/habilidades/tdd-workflow/SKILL.md +715 -713
  34. package/habilidades/validacion-ci-sistema/SKILL.md +17 -1
  35. package/hooks/calidad-pre-commit.js +5 -1
  36. package/hooks/check-update.js +39 -1
  37. package/hooks/lib/autonomia.js +208 -0
  38. package/hooks/lib/briefing.js +474 -0
  39. package/hooks/lib/propose-step.js +358 -0
  40. package/hooks/session-briefing.js +98 -0
  41. package/hooks/telemetria-skill-routing.js +100 -0
  42. package/instintos/autonomia.yaml +27 -0
  43. package/llms.txt +4 -4
  44. package/manifiestos/hooks-config.json +18 -0
  45. package/manifiestos/modulos.json +25 -3
  46. package/manifiestos/skills-lock.json +17 -17
  47. package/package.json +93 -93
  48. package/plugin.json +371 -371
  49. package/reglas/analizar-directorios-antes-de-escribir.md +228 -0
  50. package/reglas/consultar-vault-primero.md +195 -0
  51. package/reglas/debatir-antes-de-aceptar.md +158 -0
  52. package/reglas/git-coauthor.md +100 -0
  53. package/reglas/monitor-ci.md +309 -0
  54. package/reglas/registro-componentes-nuevos.md +38 -10
  55. package/reglas/sesiones-paralelas.md +180 -0
  56. package/reglas/usar-code-review-graph.md +155 -0
  57. package/reglas/verificar-citas-normativas.md +548 -0
  58. package/scripts/auditar-claudemd.js +38 -0
  59. package/scripts/cli/aprobar-plan.js +73 -0
  60. package/scripts/cli/briefing.js +23 -0
  61. package/scripts/cli/ciclo-evolucion.js +26 -0
  62. package/scripts/cli/configurar-ci.js +40 -0
  63. package/scripts/cli/derivar-feature-list.js +25 -0
  64. package/scripts/cli/detectar-host.js +27 -0
  65. package/scripts/cli/diary-entry.js +69 -0
  66. package/scripts/cli/execution-state.js +18 -0
  67. package/scripts/cli/gateway-notify.js +41 -0
  68. package/scripts/cli/liberar-fase.js +42 -0
  69. package/scripts/cli/loop-telemetry.js +125 -0
  70. package/scripts/cli/mark-evolved.js +56 -0
  71. package/scripts/cli/metricas-dora.js +26 -0
  72. package/scripts/cli/near-duplicate.js +55 -0
  73. package/scripts/cli/notificaciones.js +123 -0
  74. package/scripts/cli/propose-step.js +29 -0
  75. package/scripts/cli/schedule-parse.js +19 -0
  76. package/scripts/cli/sugerir-modelo.js +20 -0
  77. package/scripts/cli/verificar-plan.js +36 -0
  78. package/scripts/cli/verificar-trazabilidad.js +35 -0
  79. package/scripts/derivar-feature-list.js +1 -0
  80. package/scripts/instalador.js +52 -6
  81. package/scripts/lib/auditar-invocaciones-comandos.js +104 -0
  82. package/scripts/lib/ci-reader.js +193 -0
  83. package/scripts/lib/detectar-host-swl.js +175 -0
  84. package/scripts/lib/evidencia-release.js +322 -0
  85. package/scripts/lib/gate-hooks-requires.js +249 -0
  86. package/scripts/lib/gate-licencias.js +212 -0
  87. package/scripts/lib/git-metricas.js +257 -0
  88. package/scripts/lib/metricas-dora.js +204 -0
  89. package/scripts/lib/resolver-plan-fase.js +37 -0
  90. package/scripts/tui/ejecutores.js +1 -1
  91. package/scripts/validar-manifest.js +92 -1
  92. package/scripts/validar.js +13 -0
  93. package/scripts/verificar-evolucion.js +54 -4
  94. package/scripts/verificar-release.js +102 -0
  95. package/scripts/verificar-trazabilidad.js +12 -6
  96. package/reglas/arquitectura.evolved.json +0 -7
  97. package/reglas/seguridad.evolved.json +0 -7
@@ -811,18 +811,22 @@
811
811
  "archivos": [
812
812
  "comandos/swl/nuevo-proyecto.md",
813
813
  "comandos/swl/instalar.md",
814
+ "comandos/swl/status.md",
814
815
  "comandos/swl/planear-fase.md",
815
816
  "comandos/swl/aprobar-plan.md",
816
817
  "comandos/swl/ejecutar-fase.md",
817
818
  "comandos/swl/verificar.md",
818
819
  "comandos/swl/discutir-fase.md",
820
+ "comandos/swl/briefing.md",
819
821
  "comandos/swl/mapear-codebase.md",
820
822
  "comandos/swl/adoptar-proyecto.md",
821
823
  "comandos/swl/checkpoint.md",
822
824
  "comandos/swl/compactar.md",
823
825
  "comandos/swl/aprender.md",
824
826
  "scripts/lib/plan-lock.js",
825
- "scripts/verificar-trazabilidad.js"
827
+ "scripts/verificar-trazabilidad.js",
828
+ "scripts/lib/evidencia-release.js",
829
+ "scripts/lib/gate-licencias.js"
826
830
  ],
827
831
  "targets": [
828
832
  "claude",
@@ -839,7 +843,6 @@
839
843
  "archivos": [
840
844
  "comandos/swl/actualizar.md",
841
845
  "comandos/swl/evolucionar.md",
842
- "comandos/swl/status.md",
843
846
  "comandos/swl/release.md",
844
847
  "comandos/swl/auditar-deps.md",
845
848
  "comandos/swl/crear-skill.md",
@@ -911,7 +914,15 @@
911
914
  "reglas/auditorias-documentales-estructurales.md",
912
915
  "reglas/intent-engineering.md",
913
916
  "reglas/tests-cleanup.md",
914
- "reglas/sin-duplicacion-reglas-globales.md"
917
+ "reglas/sin-duplicacion-reglas-globales.md",
918
+ "reglas/analizar-directorios-antes-de-escribir.md",
919
+ "reglas/consultar-vault-primero.md",
920
+ "reglas/debatir-antes-de-aceptar.md",
921
+ "reglas/git-coauthor.md",
922
+ "reglas/monitor-ci.md",
923
+ "reglas/sesiones-paralelas.md",
924
+ "reglas/usar-code-review-graph.md",
925
+ "reglas/verificar-citas-normativas.md"
915
926
  ],
916
927
  "targets": [
917
928
  "claude",
@@ -1021,11 +1032,19 @@
1021
1032
  "hooks/graph-update.js",
1022
1033
  "hooks/preservar-estado-pre-compact.js",
1023
1034
  "hooks/check-update.js",
1035
+ "scripts/lib/npm-version.js",
1036
+ "scripts/lib/paquetes-conocidos.js",
1037
+ "scripts/lib/git-metricas.js",
1038
+ "scripts/lib/drift-detector.js",
1024
1039
  "hooks/ciclo-evolucion.js",
1025
1040
  "hooks/ciclo-evolucion-subagente.js",
1026
1041
  "hooks/notificacion-sesion-stop.js",
1027
1042
  "hooks/captura-feedback-usuario.js",
1028
1043
  "hooks/inbox-aviso.js",
1044
+ "hooks/session-briefing.js",
1045
+ "hooks/lib/briefing.js",
1046
+ "hooks/lib/propose-step.js",
1047
+ "hooks/lib/autonomia.js",
1029
1048
  "hooks/aiisms-detector.js",
1030
1049
  "hooks/claudemd-bloat-detector.js",
1031
1050
  "hooks/claudemd-duplicacion-detector.js",
@@ -1130,10 +1149,13 @@
1130
1149
  "tipo": "hooks",
1131
1150
  "archivos": [
1132
1151
  "hooks/telemetria-agentes.js",
1152
+ "hooks/telemetria-skill-routing.js",
1133
1153
  "hooks/audit-trail.js",
1134
1154
  "hooks/registro-turnos.js",
1135
1155
  "hooks/lib/otlp-exporter.js",
1136
1156
  "scripts/lib/skill-discovery.js",
1157
+ "scripts/lib/span-schema.js",
1158
+ "scripts/lib/tracing-processor-interface.js",
1137
1159
  "scripts/lib/audit-query.js",
1138
1160
  "comandos/swl/skill-search.md"
1139
1161
  ],
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "lockfileVersion": 1,
3
- "generatedAt": "2026-06-12T00:39:30.752Z",
3
+ "generatedAt": "2026-06-13T23:48:35.239Z",
4
4
  "skillsCount": 182,
5
- "lockHash": "sha256:3d9a01ae6be8da3264d3c9fdf4e756b7564df11a865ab8b6b2ff26c0927c02f5",
5
+ "lockHash": "sha256:9a83648f9615e563db51b1ff72c083526892f9dd1e0a34513dbc104e1caf29ff",
6
6
  "skills": [
7
7
  {
8
8
  "nombre": "accesibilidad-a11y",
@@ -462,9 +462,9 @@
462
462
  {
463
463
  "nombre": "ejecutar-fase",
464
464
  "path": "habilidades/ejecutar-fase/SKILL.md",
465
- "hash": "sha256:9cdb143e2605b4b00576de44fac17fc3d3858a64a5df65b9ea5a0fb797db10b9",
466
- "bytes": 22206,
467
- "version": "\"1.2.0\""
465
+ "hash": "sha256:861cf3d2198d43432090f25f69d79f9edf6214ac31c23531957071a62494de3f",
466
+ "bytes": 22890,
467
+ "version": "\"1.2.1\""
468
468
  },
469
469
  {
470
470
  "nombre": "ejecutar-task-iterativo",
@@ -889,9 +889,9 @@
889
889
  {
890
890
  "nombre": "planear-fase",
891
891
  "path": "habilidades/planear-fase/SKILL.md",
892
- "hash": "sha256:c5a81cf5c936795781af919021ee59e6658bc92b55eb647fed51c0ae9c018cf2",
893
- "bytes": 15332,
894
- "version": "\"1.3.0\""
892
+ "hash": "sha256:319c3bb674507a8ee31dc8623b441adf9341a24e02697e23dc3cf7b8f4ad9e1f",
893
+ "bytes": 15402,
894
+ "version": "\"1.3.1\""
895
895
  },
896
896
  {
897
897
  "nombre": "postgresql-experto",
@@ -1134,9 +1134,9 @@
1134
1134
  {
1135
1135
  "nombre": "swl-claudemd",
1136
1136
  "path": "habilidades/swl-claudemd/SKILL.md",
1137
- "hash": "sha256:b270cedba83127c2a45f4a639efce2f349a8645e42336bf44ca93a806dc1e53f",
1138
- "bytes": 15362,
1139
- "version": "\"1.2.1\""
1137
+ "hash": "sha256:6e8abe48bacd9059047df2b33bcd4df20e46c88e3df6d6692800896c003050e7",
1138
+ "bytes": 16060,
1139
+ "version": "\"1.3.0\""
1140
1140
  },
1141
1141
  {
1142
1142
  "nombre": "swl-dashboard",
@@ -1169,9 +1169,9 @@
1169
1169
  {
1170
1170
  "nombre": "tdd-workflow",
1171
1171
  "path": "habilidades/tdd-workflow/SKILL.md",
1172
- "hash": "sha256:94704167d585fae72ba43a363bab32cbb7f2fefe8e09618784be986228036534",
1173
- "bytes": 33683,
1174
- "version": "\"1.2.0\""
1172
+ "hash": "sha256:c2cccec376924efd5b3fb283504b4953cbee8c625ec9ee7458be80816e9336b5",
1173
+ "bytes": 33084,
1174
+ "version": "\"1.2.1\""
1175
1175
  },
1176
1176
  {
1177
1177
  "nombre": "terraform-experto",
@@ -1232,9 +1232,9 @@
1232
1232
  {
1233
1233
  "nombre": "validacion-ci-sistema",
1234
1234
  "path": "habilidades/validacion-ci-sistema/SKILL.md",
1235
- "hash": "sha256:f3a3eadcc7fae8490fe826f320306946965873c3bb71667b1b73a3876740a349",
1236
- "bytes": 7712,
1237
- "version": "\"1.0.0\""
1235
+ "hash": "sha256:817ea99320e3c9162675ded5482925fd0f23e57cdf510b159fe02fd5ac3d994e",
1236
+ "bytes": 8430,
1237
+ "version": "\"1.1.0\""
1238
1238
  },
1239
1239
  {
1240
1240
  "nombre": "verificacion-evidencia",
package/package.json CHANGED
@@ -1,93 +1,93 @@
1
- {
2
- "name": "@saulwade/swl-ses",
3
- "version": "2.0.0",
4
- "description": "Sistema de ingenieria de software auto-evolutivo multi-runtime polyglot con 60 agentes, 182 habilidades, 43 comandos, 69 reglas y 46 hooks. Soporta 11 lenguajes y 7 runtimes: Claude Code, OpenClaude, OpenCode, Gemini CLI, Cursor, Codex CLI (soporte completo); GitHub Copilot (soporte parcial). 100% en espanol (Mexico). Multi-target install (--target CSV / --all-runtimes), autoconfig MCP en Cursor/Codex con --with-mcp, agentes Codex en TOML, hooks Cursor (17 eventos) y Codex (6 eventos). Gateway bidireccional con relay Telegram y auditoria profunda Nemesis con loop evaluator-optimizer opt-in (ADR-0021) y 8 tools ejecutables. v1.8.0 unifica los directorios runtime de .planning/ al ingles (evolution/, auto-evolution/, user-profile/, archive/), manteniendo fases/ en espanol, con guard validar-planning-paths y allowlist canonica (ADR-0031). Hereda de v1.7.4: skill calidad-anti-patrones-universales + scripts/lib/pr-analyzer.js + 3 sub-secciones en estilo-sin-ai-isms.",
5
- "bin": {
6
- "swl-ses": "bin/swl-ses.js",
7
- "swl-telegram-bot": "bin/swl-telegram-bot.js",
8
- "swl-mcp-server": "bin/swl-mcp-server.js",
9
- "swl-webhook-server": "bin/swl-webhook-server.js"
10
- },
11
- "files": [
12
- "bin",
13
- "scripts",
14
- "manifiestos",
15
- "agentes",
16
- "habilidades",
17
- "comandos",
18
- "reglas",
19
- "hooks",
20
- "gateway",
21
- "plantillas",
22
- "contextos",
23
- "instintos",
24
- "schemas",
25
- "_userland",
26
- "plugin.json",
27
- "CLAUDE.md",
28
- "llms.txt"
29
- ],
30
- "scripts": {
31
- "postinstall": "echo '\n swl-software-engineering-system instalado.\n Ejecuta: npx swl-ses init\n'",
32
- "test": "node --test tests/lib/*.test.js tests/scripts/*.test.js tests/scripts/lib/*.test.js tests/scripts/tui/*.test.js tests/hooks/*.test.js tests/hooks/lib/*.test.js tests/habilidades/*.test.js tests/gateway/*.test.js tests/bin/*.test.js tests/transformadores/*.test.js tests/mcp-server/*.test.js",
33
- "test:validate": "node scripts/validar.js",
34
- "test:manifest": "node scripts/validar-manifest.js",
35
- "test:docs": "node scripts/verificar-docs-vs-codigo.js",
36
- "test:smoke": "node scripts/smoke-test.js",
37
- "test:aislamiento": "node scripts/validar-tests-aislamiento.js",
38
- "test:all": "npm test && node scripts/validar.js && node scripts/validar-manifest.js && node scripts/verificar-docs-vs-codigo.js && node scripts/derivar-feature-list.js --check",
39
- "test:userland": "node scripts/validar-userland-vacio.js",
40
- "test:release": "npm run test:all && npm run test:userland && npm run test:smoke",
41
- "doctor": "node scripts/doctor.js",
42
- "prepack": "node scripts/limpiar-artefactos-python.js && node scripts/validar-userland-vacio.js",
43
- "prepublishOnly": "npm run test:release",
44
- "publish:all": "node scripts/publicar.js",
45
- "publish:github": "node scripts/publicar.js --solo-github",
46
- "publish:npmjs": "node scripts/publicar.js --solo-npmjs",
47
- "publish:dry": "node scripts/publicar.js --dry-run",
48
- "generate:docs": "node scripts/generar-inventario.js",
49
- "gen-checklists": "node scripts/generar-checklists-consolidados.js",
50
- "gen-checklists:check": "node scripts/generar-checklists-consolidados.js --check",
51
- "gen:feature-list": "node scripts/derivar-feature-list.js",
52
- "gen:feature-list:check": "node scripts/derivar-feature-list.js --check",
53
- "field-report": "node scripts/field-report.js",
54
- "configure:branch-protection": "node scripts/configurar-branch-protection.js"
55
- },
56
- "engines": {
57
- "node": ">=22.0.0"
58
- },
59
- "keywords": [
60
- "claude-code",
61
- "github-copilot",
62
- "gemini-cli",
63
- "opencode",
64
- "codex-cli",
65
- "agentes",
66
- "skills",
67
- "multi-runtime",
68
- "spec-driven",
69
- "orquestacion",
70
- "ingenieria-software"
71
- ],
72
- "author": "Saul Wade Leon",
73
- "license": "MIT",
74
- "repository": {
75
- "type": "git",
76
- "url": "git+https://github.com/saul-wade/swl-ses.git"
77
- },
78
- "homepage": "https://github.com/saul-wade/swl-ses#readme",
79
- "bugs": {
80
- "url": "https://github.com/saul-wade/swl-ses/issues"
81
- },
82
- "publishConfig": {
83
- "registry": "https://registry.npmjs.org/",
84
- "access": "public"
85
- },
86
- "dependencies": {
87
- "docx": "^9.6.1"
88
- },
89
- "overrides": {
90
- "pako": "^2.1.0",
91
- "readable-stream": "^4.7.0"
92
- }
93
- }
1
+ {
2
+ "name": "@saulwade/swl-ses",
3
+ "version": "2.2.0",
4
+ "description": "Sistema de ingenieria de software auto-evolutivo multi-runtime polyglot con 60 agentes, 182 habilidades, 44 comandos, 77 reglas y 48 hooks. Soporta 11 lenguajes y 7 runtimes: Claude Code, OpenClaude, OpenCode, Gemini CLI, Cursor, Codex CLI (soporte completo); GitHub Copilot (soporte parcial). 100% en espanol (Mexico). Multi-target install (--target CSV / --all-runtimes), autoconfig MCP en Cursor/Codex con --with-mcp, agentes Codex en TOML, hooks Cursor (17 eventos) y Codex (6 eventos). Gateway bidireccional con relay Telegram y auditoria profunda Nemesis con loop evaluator-optimizer opt-in (ADR-0021) y 8 tools ejecutables. v1.8.0 unifica los directorios runtime de .planning/ al ingles (evolution/, auto-evolution/, user-profile/, archive/), manteniendo fases/ en espanol, con guard validar-planning-paths y allowlist canonica (ADR-0031). Hereda de v1.7.4: skill calidad-anti-patrones-universales + scripts/lib/pr-analyzer.js + 3 sub-secciones en estilo-sin-ai-isms.",
5
+ "bin": {
6
+ "swl-ses": "bin/swl-ses.js",
7
+ "swl-telegram-bot": "bin/swl-telegram-bot.js",
8
+ "swl-mcp-server": "bin/swl-mcp-server.js",
9
+ "swl-webhook-server": "bin/swl-webhook-server.js"
10
+ },
11
+ "files": [
12
+ "bin",
13
+ "scripts",
14
+ "manifiestos",
15
+ "agentes",
16
+ "habilidades",
17
+ "comandos",
18
+ "reglas",
19
+ "hooks",
20
+ "gateway",
21
+ "plantillas",
22
+ "contextos",
23
+ "instintos",
24
+ "schemas",
25
+ "_userland",
26
+ "plugin.json",
27
+ "CLAUDE.md",
28
+ "llms.txt"
29
+ ],
30
+ "scripts": {
31
+ "postinstall": "echo '\n swl-software-engineering-system instalado.\n Ejecuta: npx swl-ses init\n'",
32
+ "test": "node --test tests/lib/*.test.js tests/scripts/*.test.js tests/scripts/lib/*.test.js tests/scripts/tui/*.test.js tests/hooks/*.test.js tests/hooks/lib/*.test.js tests/habilidades/*.test.js tests/gateway/*.test.js tests/bin/*.test.js tests/transformadores/*.test.js tests/mcp-server/*.test.js",
33
+ "test:validate": "node scripts/validar.js",
34
+ "test:manifest": "node scripts/validar-manifest.js",
35
+ "test:docs": "node scripts/verificar-docs-vs-codigo.js",
36
+ "test:smoke": "node scripts/smoke-test.js",
37
+ "test:aislamiento": "node scripts/validar-tests-aislamiento.js",
38
+ "test:all": "npm test && node scripts/validar.js && node scripts/validar-manifest.js && node scripts/verificar-docs-vs-codigo.js && node scripts/derivar-feature-list.js --check",
39
+ "test:userland": "node scripts/validar-userland-vacio.js",
40
+ "test:release": "npm run test:all && npm run test:userland && npm run test:smoke",
41
+ "doctor": "node scripts/doctor.js",
42
+ "prepack": "node scripts/limpiar-artefactos-python.js && node scripts/validar-userland-vacio.js",
43
+ "prepublishOnly": "npm run test:release",
44
+ "publish:all": "node scripts/publicar.js",
45
+ "publish:github": "node scripts/publicar.js --solo-github",
46
+ "publish:npmjs": "node scripts/publicar.js --solo-npmjs",
47
+ "publish:dry": "node scripts/publicar.js --dry-run",
48
+ "generate:docs": "node scripts/generar-inventario.js",
49
+ "gen-checklists": "node scripts/generar-checklists-consolidados.js",
50
+ "gen-checklists:check": "node scripts/generar-checklists-consolidados.js --check",
51
+ "gen:feature-list": "node scripts/derivar-feature-list.js",
52
+ "gen:feature-list:check": "node scripts/derivar-feature-list.js --check",
53
+ "field-report": "node scripts/field-report.js",
54
+ "configure:branch-protection": "node scripts/configurar-branch-protection.js"
55
+ },
56
+ "engines": {
57
+ "node": ">=22.0.0"
58
+ },
59
+ "keywords": [
60
+ "claude-code",
61
+ "github-copilot",
62
+ "gemini-cli",
63
+ "opencode",
64
+ "codex-cli",
65
+ "agentes",
66
+ "skills",
67
+ "multi-runtime",
68
+ "spec-driven",
69
+ "orquestacion",
70
+ "ingenieria-software"
71
+ ],
72
+ "author": "Saul Wade Leon",
73
+ "license": "MIT",
74
+ "repository": {
75
+ "type": "git",
76
+ "url": "git+https://github.com/saul-wade/swl-ses.git"
77
+ },
78
+ "homepage": "https://github.com/saul-wade/swl-ses#readme",
79
+ "bugs": {
80
+ "url": "https://github.com/saul-wade/swl-ses/issues"
81
+ },
82
+ "publishConfig": {
83
+ "registry": "https://registry.npmjs.org/",
84
+ "access": "public"
85
+ },
86
+ "dependencies": {
87
+ "docx": "^9.6.1"
88
+ },
89
+ "overrides": {
90
+ "pako": "^2.1.0",
91
+ "readable-stream": "^4.7.0"
92
+ }
93
+ }