@diplodoc/cli-tests 0.0.0-rc-toc-translation-202506261401 → 0.0.0-rc-liquid-conditions-saving-202509050811

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 (106) hide show
  1. package/e2e/__snapshots__/generate-map.spec.ts.snap +345 -0
  2. package/e2e/__snapshots__/include-toc.test.ts.snap +8 -0
  3. package/e2e/__snapshots__/load-custom-resources.spec.ts.snap +68 -56
  4. package/e2e/__snapshots__/metadata.spec.ts.snap +31 -23
  5. package/e2e/__snapshots__/preprocess.test.ts.snap +549 -0
  6. package/e2e/__snapshots__/regression.test.ts.snap +197 -142
  7. package/e2e/__snapshots__/rtl.spec.ts.snap +51 -41
  8. package/e2e/__snapshots__/search.test.ts.snap +86 -0
  9. package/e2e/__snapshots__/skip-html-extension.spec.ts.snap +211 -0
  10. package/e2e/__snapshots__/translation.spec.ts.snap +2138 -1026
  11. package/e2e/errors.spec.ts +33 -2
  12. package/e2e/generate-map.spec.ts +9 -3
  13. package/e2e/preprocess.test.ts +33 -0
  14. package/e2e/redirects-validation.spec.ts +61 -0
  15. package/e2e/search.test.ts +15 -0
  16. package/e2e/skip-html-extension.spec.ts +15 -0
  17. package/e2e/translation.spec.ts +73 -3
  18. package/fixtures/cliAdapter.ts +23 -0
  19. package/fixtures/globals.d.ts +4 -0
  20. package/fixtures/runners/binary.ts +4 -3
  21. package/fixtures/runners/types.ts +1 -2
  22. package/fixtures/utils/file.ts +5 -5
  23. package/fixtures/utils/test.ts +18 -8
  24. package/mocks/docs-viewer-interface/input/.yfm +6 -0
  25. package/mocks/docs-viewer-interface/input/index.md +3 -0
  26. package/mocks/docs-viewer-interface/input/toc.yaml +5 -0
  27. package/mocks/errors/extract-filtered-link/input/filtered.md +1 -0
  28. package/mocks/errors/extract-filtered-link/input/filtered2.md +0 -0
  29. package/mocks/errors/extract-filtered-link/input/index.md +7 -0
  30. package/mocks/errors/extract-filtered-link/input/toc.yaml +1 -0
  31. package/mocks/load-custom-resources/md2html-with-resources/input/page.md +9 -2
  32. package/mocks/load-custom-resources/md2md-with-resources/input/page.md +9 -2
  33. package/mocks/load-custom-resources/single-page-with-resources/input/page.md +9 -2
  34. package/mocks/metadata/md2html-with-metadata/input/page.md +8 -1
  35. package/mocks/metadata/md2md-with-metadata/input/page.md +7 -0
  36. package/mocks/preprocess/input/.yfm +1 -0
  37. package/mocks/preprocess/input/1.md +29 -0
  38. package/mocks/preprocess/input/_assets/1.png +0 -0
  39. package/mocks/preprocess/input/_assets/1.svg +0 -0
  40. package/mocks/preprocess/input/autotitle.md +23 -0
  41. package/mocks/preprocess/input/commented-include.md +3 -0
  42. package/mocks/preprocess/input/images.md +5 -0
  43. package/mocks/preprocess/input/included-item.md +12 -0
  44. package/mocks/preprocess/input/includes/deep.md +1 -0
  45. package/mocks/preprocess/input/includes/deepWithIndent.md +6 -0
  46. package/mocks/preprocess/input/includes/presets.yaml +2 -0
  47. package/mocks/preprocess/input/includes/sub/user.md +1 -0
  48. package/mocks/preprocess/input/includes/sub/userWithIndent.md +5 -0
  49. package/mocks/preprocess/input/includes/test.md +1 -0
  50. package/mocks/preprocess/input/includes/user.md +1 -0
  51. package/mocks/preprocess/input/includes.md +18 -0
  52. package/mocks/preprocess/input/latex.md +3 -0
  53. package/mocks/preprocess/input/mermaid.md +13 -0
  54. package/mocks/preprocess/input/presets.yaml +8 -0
  55. package/mocks/preprocess/input/sub/folder/item-1.md +7 -0
  56. package/mocks/preprocess/input/sub/toc.yaml +5 -0
  57. package/mocks/preprocess/input/toc-i.yaml +3 -0
  58. package/mocks/preprocess/input/toc.yaml +16 -0
  59. package/mocks/redirects-validation/extensions-deprecation/input/blah.md +0 -0
  60. package/mocks/redirects-validation/extensions-deprecation/input/redirects.yaml +5 -0
  61. package/mocks/redirects-validation/extensions-deprecation/input/toc.yaml +4 -0
  62. package/mocks/redirects-validation/invalid-regex/input/blah.md +0 -0
  63. package/mocks/redirects-validation/invalid-regex/input/redirects.yaml +3 -0
  64. package/mocks/redirects-validation/invalid-regex/input/toc.yaml +4 -0
  65. package/mocks/redirects-validation/malformed-redirect/input/blah.md +0 -0
  66. package/mocks/redirects-validation/malformed-redirect/input/redirects.yaml +6 -0
  67. package/mocks/redirects-validation/malformed-redirect/input/toc.yaml +4 -0
  68. package/mocks/redirects-validation/same-path/input/blah.md +0 -0
  69. package/mocks/redirects-validation/same-path/input/redirects.yaml +3 -0
  70. package/mocks/redirects-validation/same-path/input/toc.yaml +4 -0
  71. package/mocks/redirects-validation/unparseable/input/blah.md +0 -0
  72. package/mocks/redirects-validation/unparseable/input/redirects.yaml +11 -0
  73. package/mocks/redirects-validation/unparseable/input/toc.yaml +4 -0
  74. package/mocks/regression/input/.yfm +2 -0
  75. package/mocks/regression/input/images.md +2 -0
  76. package/mocks/regression/input/includes/deep.md +2 -0
  77. package/mocks/regression/input/includes/presets.yaml +1 -0
  78. package/mocks/regression/input/includes/tools.md +1 -0
  79. package/mocks/regression/input/includes.md +5 -0
  80. package/mocks/regression/input/merge/merge.md +2 -0
  81. package/mocks/regression/input/merge/presets.yaml +1 -0
  82. package/mocks/regression/input/merge/toc.yaml +2 -0
  83. package/mocks/regression/input/presets.yaml +1 -0
  84. package/mocks/regression/input/toc.yaml +2 -0
  85. package/mocks/search/input/.yfm +12 -0
  86. package/mocks/search/input/index.md +3 -0
  87. package/mocks/search/input/toc.yaml +1 -0
  88. package/mocks/skip-html-extension/input/.yfm +1 -0
  89. package/mocks/skip-html-extension/input/folder/index.md +1 -0
  90. package/mocks/skip-html-extension/input/index-test-html/index.md +4 -0
  91. package/mocks/skip-html-extension/input/index.md +6 -0
  92. package/mocks/skip-html-extension/input/page1.md +3 -0
  93. package/mocks/skip-html-extension/input/page2.md +6 -0
  94. package/mocks/skip-html-extension/input/toc.yaml +13 -0
  95. package/mocks/translation/conditions/input/index.md +37 -0
  96. package/mocks/translation/dir-files/input/ru/nested/syntax/base.md +2 -0
  97. package/mocks/translation/no-translate/input/index.md +7 -0
  98. package/mocks/translation/no-translate/input/no-translate.md +57 -0
  99. package/mocks/translation/no-translate/input/openapi-spec.yaml +37 -0
  100. package/mocks/translation/no-translate/input/toc.yaml +11 -0
  101. package/mocks/translation/openapi/input/openapi-spec.yaml +42 -0
  102. package/mocks/translation/openapi/input/toc.yaml +8 -0
  103. package/mocks/warning/unreachable-autotitle/input/index.md +1 -0
  104. package/mocks/warning/unreachable-autotitle/input/link.md +0 -0
  105. package/mocks/warning/unreachable-autotitle/input/toc.yaml +4 -0
  106. package/package.json +5 -5
@@ -0,0 +1,23 @@
1
+ # Autotitles ![](_assets/1.svg)
2
+
3
+ Empty title
4
+ [](./1.md)
5
+
6
+ Empty subtitle
7
+ [](./1.md#subtitle)
8
+
9
+ Special title
10
+ [{#T}](./1.md)
11
+
12
+ Special subtitle
13
+ [{#T}](./1.md#subtitle)
14
+
15
+ Empty local title
16
+ [](#header)
17
+
18
+ Special local title
19
+ [{#T}](#header)
20
+
21
+ ## Header {#header}
22
+
23
+ Content
@@ -0,0 +1,3 @@
1
+ ![](./missed-asset.png)
2
+
3
+ [](./missed-link.md)
@@ -0,0 +1,5 @@
1
+ # Images
2
+
3
+ ![simple image](_assets/1.png)
4
+
5
+
@@ -0,0 +1,12 @@
1
+ # Included item
2
+
3
+ Included item text
4
+
5
+ <!-- : {% include [rec-off](./commented-include.md) %} -->
6
+
7
+ {% note alert "Alert!" %}
8
+
9
+ <!-- content -->
10
+
11
+ {% endnote %}
12
+
@@ -0,0 +1 @@
1
+ {% include [user](sub/user.md) %}
@@ -0,0 +1,6 @@
1
+ - list item
2
+
3
+ {% include [user](sub/userWithIndent.md) %}
4
+
5
+ Link to mermaid diagram from 1 level
6
+ [](../mermaid.md)
@@ -0,0 +1,2 @@
1
+ default:
2
+ user: Alice
@@ -0,0 +1 @@
1
+ {{user}}
@@ -0,0 +1,5 @@
1
+ Link to mermaid diagram from 2 level
2
+ [](../../mermaid.md)
3
+
4
+ - User
5
+ {{user}}
@@ -0,0 +1 @@
1
+ Test
@@ -0,0 +1 @@
1
+ {{user}}
@@ -0,0 +1,18 @@
1
+ Text
2
+
3
+ {% include [user](includes/user.md) %}
4
+
5
+ {% include [test](includes/test.md) %}
6
+
7
+ Link after include
8
+ [{#T}](./1.md)
9
+
10
+ <!--{% include [For includes/deep.md](includes/deep.md) %}-->
11
+ {% include [For includes/deep.md](includes/deep.md) %}
12
+
13
+ Include with big indent
14
+
15
+ {% include [For includes/deep.md](includes/deepWithIndent.md) %}
16
+
17
+ Link after include
18
+ [{#T}](./1.md#subtitle)
@@ -0,0 +1,3 @@
1
+ # Latex usage
2
+
3
+ $\sqrt{3x-1}+(1+x)^2$
@@ -0,0 +1,13 @@
1
+ # Mermaid usage
2
+
3
+ ```mermaid
4
+
5
+ sequenceDiagram
6
+ rect rgba(251, 243, 232, 0.2)
7
+ Alice ->> Bob:
8
+ end
9
+ ```
10
+
11
+ ## Mermaid info {#info}
12
+
13
+ Some mermaid info
@@ -0,0 +1,8 @@
1
+ default:
2
+ default-var: default-var-value
3
+ not-var: not-var-value
4
+ product: root
5
+ user: Bob
6
+
7
+ internal:
8
+ default-var: default-var-internal-value
@@ -0,0 +1,7 @@
1
+ # Item 1
2
+
3
+ Item 1 text
4
+
5
+ [{#T}](../../images.md)
6
+
7
+ [{#T}](../../autotitle.md)
@@ -0,0 +1,5 @@
1
+ items:
2
+ name: Named include (items is Object here - this is not an error)
3
+ items:
4
+ - name: Item 1
5
+ href: folder/item-1.md
@@ -0,0 +1,3 @@
1
+ items:
2
+ - name: Included Item
3
+ href: ./included-item.md
@@ -0,0 +1,16 @@
1
+ items:
2
+ - name: Md item with not_var syntax
3
+ href: ./1.md
4
+ - name: Md item named without extension
5
+ href: ./1
6
+ - include: {path: toc-i.yaml}
7
+ - include: {path: sub/toc.yaml, mode: link}
8
+ - href: ./mermaid
9
+ - name: '{#T}'
10
+ href: ./latex
11
+ - name: Images
12
+ href: ./images
13
+ - name: Autotitle
14
+ href: ./autotitle
15
+ - name: includes
16
+ href: ./includes
@@ -0,0 +1,5 @@
1
+ common:
2
+ - from: /foo.md
3
+ to: /bar.md
4
+ - from: /barbar.md
5
+ to: /baz.md
@@ -0,0 +1,4 @@
1
+ items:
2
+ - name: Blah
3
+ href: blah.md
4
+
@@ -0,0 +1,3 @@
1
+ common:
2
+ - from: /(foo.md
3
+ to: /bar.md
@@ -0,0 +1,4 @@
1
+ items:
2
+ - name: Blah
3
+ href: blah.md
4
+
@@ -0,0 +1,6 @@
1
+ common:
2
+ - form: /foo.md
3
+ to: /bar.md
4
+ - match: /barbar.md
5
+ redirect: /baz.md
6
+ -
@@ -0,0 +1,4 @@
1
+ items:
2
+ - name: Blah
3
+ href: blah.md
4
+
@@ -0,0 +1,3 @@
1
+ common:
2
+ - from: /foo
3
+ to: /foo
@@ -0,0 +1,4 @@
1
+ items:
2
+ - name: Blah
3
+ href: blah.md
4
+
@@ -0,0 +1,11 @@
1
+ common:
2
+ - from: /foo.md
3
+ to: /bar.md
4
+
5
+ <<<<<<< HEAD
6
+
7
+ - from: /barbar.md
8
+ to: /baz.md
9
+
10
+ =======
11
+ >>>>>>> merge-branch
@@ -0,0 +1,4 @@
1
+ items:
2
+ - name: Blah
3
+ href: blah.md
4
+
@@ -0,0 +1,2 @@
1
+ preprocess:
2
+ mergeAutotitles: true
@@ -9,3 +9,5 @@
9
9
  <!-- ![commented](_assets/4.png) -->
10
10
 
11
11
  ![with backslash](_assets/5\_1.png)
12
+
13
+ [![img 3](_assets/{{img_3}})](latex.md)
@@ -1 +1,3 @@
1
1
  {% include [user](./user.md) %}
2
+
3
+ [![img 3](../_assets/{{img_3}})](../latex.md)
@@ -1,2 +1,3 @@
1
1
  default:
2
2
  user: Alice
3
+ img_3: 4.png
@@ -0,0 +1 @@
1
+ Tool: {{tools}}
@@ -6,3 +6,8 @@ Text
6
6
 
7
7
  <!--{% include [For includes/deep.md](includes/deep.md) %}-->
8
8
  {% include [For includes/deep.md](includes/deep.md) %}
9
+
10
+ Link after include
11
+ [{#T}](./1.md#subtitle)
12
+
13
+ Link after include
@@ -1,3 +1,5 @@
1
1
  # Should use merged item
2
2
 
3
3
  [merged](./merged.md)
4
+
5
+ {% include [tools](../includes/tools.md) %}
@@ -1,2 +1,3 @@
1
1
  default:
2
2
  product: merge
3
+ tools: Hammer and Laser
@@ -1,4 +1,6 @@
1
1
  items:
2
2
  - name: Use merged
3
3
  href: ./merge.md
4
+ - name: Multitoc item
5
+ href: ../1.md
4
6
  - include: {path: ../merge-source/toc-m.yaml, mode: merge}
@@ -3,6 +3,7 @@ default:
3
3
  not-var: not-var-value
4
4
  product: root
5
5
  user: Bob
6
+ img_3: 3.png
6
7
 
7
8
  internal:
8
9
  default-var: default-var-internal-value
@@ -9,6 +9,8 @@ items:
9
9
  href: ./1
10
10
  - name: Item with empty href
11
11
  href:
12
+ - name: Multitoc item
13
+ href: ./merge/merged.md
12
14
  - include: {path: toc-i.yaml}
13
15
  - include: {path: sub/toc.yaml, mode: link}
14
16
  - href: ./mermaid
@@ -0,0 +1,12 @@
1
+ allowHTML: true
2
+ langs: ['en','ru']
3
+
4
+ interface:
5
+ toc-header: false
6
+ favicon-src: https://storage.yandexcloud.net/diplodoc-www-assets/favicon/favicon.ico
7
+
8
+ search:
9
+ provider: local
10
+ tolerance: 2
11
+ confidense: phrased
12
+
@@ -0,0 +1,3 @@
1
+ # Header
2
+
3
+ Content
@@ -0,0 +1 @@
1
+ href: index.md
@@ -0,0 +1 @@
1
+ allowHTML: true
@@ -0,0 +1 @@
1
+ # Page 3
@@ -0,0 +1,4 @@
1
+ # Folder
2
+
3
+ [Link 1](../page1.md)
4
+ [Link 2](../page2.md)
@@ -0,0 +1,6 @@
1
+ # Header
2
+
3
+ Content
4
+
5
+ [Link 1](page1.md)
6
+ [Link 2](page2.md)
@@ -0,0 +1,3 @@
1
+ # Page 1
2
+
3
+ [Link](page2.md#hash)
@@ -0,0 +1,6 @@
1
+ # Page 2
2
+
3
+ ## hash
4
+
5
+ [Link](./folder/index.md)
6
+ [External link](https://example.com)
@@ -0,0 +1,13 @@
1
+ title: Skip html extension
2
+ href: index.md
3
+
4
+ items:
5
+ - name: Title 1
6
+ href: page1.md
7
+ - name: Title 2
8
+ href: page2.md
9
+ - name: Title 3
10
+ href: ./folder/index.md
11
+ - name: Title 4
12
+ href: ./index-test-html/index.md
13
+
@@ -0,0 +1,37 @@
1
+ [existing file](./exists.md)
2
+ <!-- [missed file](./missed.md) -->
3
+ {% if prod == true %}Test text{% endif %}
4
+
5
+ {% if inner == true %}inner test text{% endif %}
6
+
7
+ {% if prod == true %}Test text{% if inner == true %}inner test text{% endif %}{% endif %}
8
+
9
+ {% if prod == true %}
10
+
11
+ {% if list contains "item" %}
12
+
13
+ #### List
14
+
15
+ {% if item == true %}1. Item {% endif %}
16
+
17
+ Some text
18
+
19
+ {% endif %}
20
+
21
+ {% endif %}
22
+
23
+ #### Standalone contains condition
24
+
25
+ {% if list contains "item" %}
26
+
27
+ #### List
28
+
29
+ {% endif %}
30
+
31
+ #### Inline contains condition
32
+
33
+ {% if prod == true %}
34
+
35
+ #### List {% if list contains "item" %} sub text {% endif %}
36
+
37
+ {% endif %}
@@ -1 +1,3 @@
1
1
  # Базовая разметка
2
+
3
+ {% if test == "dev" %}[will be deleted on translate-extract](./index.md){% endif %}
@@ -0,0 +1,7 @@
1
+ ## Index header
2
+
3
+ ::no-translate [adsfasdfasdfasdfasdf]
4
+
5
+ lorem
6
+
7
+ asdfasdfasdf
@@ -0,0 +1,57 @@
1
+ # No-translate directive
2
+
3
+ ## Block directive
4
+ :::no-translate
5
+ ### No-translate header
6
+
7
+ :::html-block
8
+ testsetsets
9
+ :::
10
+
11
+ ::: any-other-directive
12
+ content test
13
+ :::
14
+
15
+ Should not be translated.
16
+ Can use **markup** inside.
17
+ :::
18
+
19
+
20
+ ::: some-other-directive
21
+ content here
22
+ :::
23
+ ::: no-translate
24
+ content here
25
+ ::: some-other-directive
26
+ nested content
27
+ :::
28
+ :::
29
+
30
+ ## Leaf directive
31
+
32
+ ::no-translate [## /usr/local/bin/application]
33
+ ::no-translate[**C:\Program Files\Application\config.ini**]
34
+ ::no-translate [~/Documents/project/src/main.rs]
35
+
36
+
37
+ - :no-translate[GET /api/v1/users] — get all users
38
+ - :no-translate[POST /api/v1/auth/login] — authorization
39
+ - :no-translate[PUT /api/v1/users/{id}] — update users data
40
+
41
+ ## Simple case leaf
42
+ Install using command.
43
+ :no-translate[The default port is unless specified.] Next sentence.
44
+ Set NODE_ENV=production for production builds.
45
+
46
+ ## Simple case inline
47
+ Install using :no-translate[npm install @company/package] command.
48
+ The default port is :no-translate[8080] unless specified.
49
+ Set :no-translate[NODE_ENV=production] for production builds.
50
+
51
+ ## Few inline directives
52
+ Use :no-translate[**GET /api/v1/users**] to list users and :no-translate[POST /api/v1/users] to create.
53
+
54
+ ## Empty inline directive
55
+ This is text with empty :no-translate[] directive.
56
+
57
+
@@ -0,0 +1,37 @@
1
+ openapi: 3.0.1
2
+ info:
3
+ title: OpenAPI definition
4
+ version: v0
5
+ servers:
6
+ - url: http://localhost:8080
7
+ description: Generated server url
8
+ paths:
9
+ /test:
10
+ get:
11
+ tags:
12
+ - test-controller
13
+ summary: Simple get operation. тест новой верстки 3
14
+ description: Defines a simple get :no-translate[skip this] operation with no inputs and a complex
15
+ operationId: getWithPayloadResponse
16
+ responses:
17
+ "200":
18
+ description: 200!!!!
19
+ content:
20
+ application/json:
21
+ schema:
22
+ $ref: '#/components/schemas/RecurceTop'
23
+ components:
24
+ schemas:
25
+ RecurceTop:
26
+ type: object
27
+ properties:
28
+ A:
29
+ type: string
30
+ # $ref: '#/components/schemas/RecurceMiddle'
31
+ RecurceMiddle:
32
+ type: object
33
+ properties:
34
+ B:
35
+ type: array
36
+ items:
37
+ $ref: '#/components/schemas/RecurceTop'
@@ -0,0 +1,11 @@
1
+ title: Test123
2
+ href: index.md
3
+ items:
4
+ - name: Не переводить
5
+ href: no-translate.md
6
+ - name: openapi
7
+ include:
8
+ path: openapi
9
+ includers:
10
+ - name: openapi
11
+ input: openapi-spec.yaml
@@ -0,0 +1,42 @@
1
+ openapi: 3.0.1
2
+ info:
3
+ title: OpenAPI definition
4
+ version: v0
5
+ servers:
6
+ - url: http://localhost:8080
7
+ description: Generated server url
8
+ paths:
9
+ /test:
10
+ get:
11
+ tags:
12
+ - test-controller
13
+ summary: Simple get operation. тест новой верстки 3
14
+ description: Defines a simple get operation with no inputs and a complex
15
+ operationId: getWithPayloadResponse
16
+ responses:
17
+ "200":
18
+ description: 200!!!!
19
+ content:
20
+ application/json:
21
+ schema:
22
+ $ref: '#/components/schemas/RecurceTop'
23
+ components:
24
+ schemas:
25
+ RecurceTop:
26
+ type: object
27
+ properties:
28
+ A:
29
+ type: string
30
+ description: |
31
+ Статус загрузки:
32
+ - `UPLOADED` — загрузка завершена.
33
+ - `IN_PROGRESS` — загрузка находится в процессе обработки.
34
+ - `PROCESSED` — загрузка успешно обработана.
35
+ # $ref: '#/components/schemas/RecurceMiddle'
36
+ RecurceMiddle:
37
+ type: object
38
+ properties:
39
+ B:
40
+ type: array
41
+ items:
42
+ $ref: '#/components/schemas/RecurceTop'
@@ -0,0 +1,8 @@
1
+ items:
2
+ - name: openapi
3
+ include:
4
+ path: openapi
5
+ includers:
6
+ - name: openapi
7
+ input: openapi-spec.yaml
8
+ mode: link
@@ -0,0 +1 @@
1
+ [{#T}](./link.md#unknown_yfm010)
@@ -0,0 +1,4 @@
1
+ href: index.md
2
+ items:
3
+ name: link
4
+ href: link.md
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diplodoc/cli-tests",
3
- "version": "0.0.0-rc-toc-translation-202506261401",
3
+ "version": "0.0.0-rc-liquid-conditions-saving-202509050811",
4
4
  "bin": {
5
5
  "diplodoc-cli-test": "bin.mjs"
6
6
  },
@@ -27,19 +27,19 @@
27
27
  "@diplodoc/cli": "file:.."
28
28
  },
29
29
  "dependencies": {
30
- "@diplodoc/client": "^3.6.3",
30
+ "@diplodoc/liquid": "^1.3.4",
31
31
  "@types/node": "18.x",
32
32
  "@vitest/coverage-istanbul": "^3.1.1",
33
33
  "@vitest/coverage-v8": "^3.1.1",
34
- "commander": "^13.1.0",
35
34
  "execa": "^9.5.3",
36
35
  "glob": "^11.0.2",
37
36
  "js-yaml": "^4.1.0",
37
+ "strip-ansi": "^7.1.0",
38
38
  "ts-dedent": "^2.2.0",
39
- "ts-node": "^10.4.0",
40
- "typescript": "^5.3.3"
39
+ "typescript": "^5.9.2"
41
40
  },
42
41
  "peerDependencies": {
42
+ "@diplodoc/cli": "*",
43
43
  "vitest": "^3.1.1"
44
44
  }
45
45
  }