doculi 3.1.7 → 5.7.10

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/package.json CHANGED
@@ -1,15 +1,16 @@
1
1
  {
2
2
  "name": "doculi",
3
- "version": "3.1.7",
4
- "description": "CLI and interactive Ink TUI for documents.js: every docx/pptx/odt/odp/ods/odg/odf/pdf/odm/odb/xlsx/csv/svg/markdown conversion, bridge, and editor as a scriptable command or a terminal app.",
3
+ "version": "5.7.10",
4
+ "description": "CLI and interactive Ink TUI for documents.js: every docx/pptx/odt/odp/ods/odg/odf/pdf/odm/odb/xlsx/csv/svg/markdown/rtf conversion, bridge, and editor as a scriptable command or a terminal app.",
5
5
  "type": "module",
6
6
  "repository": {
7
7
  "type": "git",
8
- "url": "git+https://github.com/ExaDev/document-cli.git"
8
+ "url": "git+https://github.com/ExaDev/documents.js.git",
9
+ "directory": "packages/document-cli"
9
10
  },
10
- "homepage": "https://github.com/ExaDev/document-cli#readme",
11
+ "homepage": "https://github.com/ExaDev/documents.js/tree/main/packages/document-cli",
11
12
  "bugs": {
12
- "url": "https://github.com/ExaDev/document-cli/issues"
13
+ "url": "https://github.com/ExaDev/documents.js/issues"
13
14
  },
14
15
  "bin": {
15
16
  "document-cli": "./dist/cli.js",
@@ -66,54 +67,52 @@
66
67
  ],
67
68
  "license": "MIT",
68
69
  "dependencies": {
69
- "commander": "^15.0.0",
70
- "document-outline.js": "^1.0.0",
71
- "documents.js": "^3.1.5",
72
- "ink": "^7.1.1",
73
- "ink-text-input": "^6.0.0",
74
- "react": "^19.2.8"
70
+ "commander": "15.0.0",
71
+ "document-outline.js": "3.6.9",
72
+ "document-schema.js": "7.6.0",
73
+ "documents.js": "7.17.4",
74
+ "ink": "7.1.1",
75
+ "ink-text-input": "6.0.0",
76
+ "react": "19.2.8"
75
77
  },
76
78
  "devDependencies": {
77
- "@arethetypeswrong/cli": "^0.18.5",
78
- "@cloudflare/vitest-pool-workers": "^0.20.2",
79
- "@commitlint/cli": "^21.2.1",
80
- "@commitlint/config-conventional": "^21.2.0",
81
- "@eslint/js": "^10.0.1",
82
- "@semantic-release/changelog": "^7.0.0",
83
- "@semantic-release/git": "^11.0.1",
84
- "@types/node": "^26.1.2",
85
- "@types/react": "^19.2.18",
86
- "@vitest/coverage-v8": "^4.1.10",
87
- "eslint": "^10.8.0",
88
- "eslint-plugin-react-hooks": "^7.1.1",
89
- "globals": "^17.8.0",
90
- "husky": "^9.1.7",
91
- "ink-testing-library": "^4.0.0",
92
- "lint-staged": "^17.3.0",
93
- "odf.js": "^5.0.2",
94
- "pdf-codec": "^3.0.0",
95
- "publint": "^0.3.22",
96
- "semantic-release": "^25.0.8",
97
- "tsdown": "^0.22.14",
98
- "turbo": "^2.10.8",
99
- "typescript": "^6.0.3",
100
- "typescript-eslint": "^8.65.0",
101
- "vitest": "^4.1.10"
79
+ "@arethetypeswrong/cli": "0.18.5",
80
+ "@cloudflare/vitest-pool-workers": "0.21.2",
81
+ "@stryker-mutator/core": "10.0.0",
82
+ "@stryker-mutator/typescript-checker": "10.0.0",
83
+ "@stryker-mutator/vitest-runner": "10.0.0",
84
+ "@types/node": "26.2.0",
85
+ "@types/react": "19.2.18",
86
+ "@vitest/coverage-v8": "4.1.11",
87
+ "eslint": "10.8.1",
88
+ "husky": "9.1.7",
89
+ "ink-testing-library": "4.0.0",
90
+ "odf.js": "7.23.1",
91
+ "publint": "0.3.22",
92
+ "semantic-release": "25.0.9",
93
+ "tsdown": "0.22.14",
94
+ "turbo": "2.10.8",
95
+ "typescript": "6.0.3",
96
+ "typescript-eslint": "8.66.0",
97
+ "vitest": "4.1.11"
102
98
  },
103
99
  "scripts": {
104
100
  "build": "turbo run _build",
105
101
  "_build": "tsdown",
106
102
  "lint": "turbo run _lint",
107
103
  "_lint": "eslint . --fix --cache --max-warnings 0",
108
- "typecheck": "turbo run _typecheck",
104
+ "typecheck": "turbo run _typecheck _typecheck:attw",
109
105
  "_typecheck": "tsc --noEmit",
106
+ "_typecheck:attw": "attw --pack",
110
107
  "test": "turbo run _test",
111
108
  "_test": "vitest run --project unit",
112
109
  "test:watch": "vitest --project unit",
113
110
  "test:coverage": "turbo run _test:coverage",
114
111
  "_test:coverage": "vitest run --project unit --coverage",
112
+ "test:mutation": "turbo run _test:mutation",
113
+ "_test:mutation": "stryker run stryker.config.mjs",
115
114
  "test:smoke": "turbo run _test:smoke",
116
- "_test:smoke": "tsdown && vitest run --project smoke",
115
+ "_test:smoke": "vitest run --project smoke",
117
116
  "test:workers": "turbo run _test:workers",
118
117
  "_test:workers": "vitest run --config vitest.workers.config.ts",
119
118
  "release": "semantic-release"