document-cli 0.0.0 → 1.0.1

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,5 +1,104 @@
1
1
  {
2
2
  "name": "document-cli",
3
- "version": "0.0.0",
4
- "private": false
3
+ "version": "1.0.1",
4
+ "description": "CLI and interactive Ink TUI for documents.js: every docx/pptx/odt/odp/ods/odg/odf/odm/odb conversion, bridge, and editor as a scriptable command or a terminal app.",
5
+ "type": "module",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/ExaDev/document-cli.git"
9
+ },
10
+ "homepage": "https://github.com/ExaDev/document-cli#readme",
11
+ "bugs": {
12
+ "url": "https://github.com/ExaDev/document-cli/issues"
13
+ },
14
+ "bin": {
15
+ "document-cli": "./dist/cli.js",
16
+ "doculi": "./dist/cli.js"
17
+ },
18
+ "exports": {
19
+ ".": {
20
+ "types": {
21
+ "import": "./dist/index.d.ts",
22
+ "require": "./dist/index.d.cts"
23
+ },
24
+ "import": "./dist/index.js",
25
+ "require": "./dist/index.cjs"
26
+ }
27
+ },
28
+ "main": "./dist/index.cjs",
29
+ "module": "./dist/index.js",
30
+ "types": "./dist/index.d.ts",
31
+ "files": [
32
+ "dist"
33
+ ],
34
+ "publishConfig": {
35
+ "access": "public",
36
+ "provenance": true,
37
+ "registry": "https://registry.npmjs.org/"
38
+ },
39
+ "sideEffects": false,
40
+ "engines": {
41
+ "node": ">=20"
42
+ },
43
+ "scripts": {
44
+ "build": "tsdown",
45
+ "prepublishOnly": "pnpm run lint && pnpm run typecheck && tsdown && publint && attw --pack",
46
+ "lint": "eslint . --max-warnings 0",
47
+ "typecheck": "tsc --noEmit",
48
+ "test": "vitest run --project unit",
49
+ "test:watch": "vitest --project unit",
50
+ "test:coverage": "vitest run --project unit --coverage",
51
+ "test:smoke": "tsdown && vitest run --project smoke",
52
+ "prepare": "husky",
53
+ "release": "semantic-release"
54
+ },
55
+ "keywords": [
56
+ "cli",
57
+ "tui",
58
+ "docx",
59
+ "pptx",
60
+ "pdf",
61
+ "odt",
62
+ "odp",
63
+ "ods",
64
+ "odg",
65
+ "odf",
66
+ "odm",
67
+ "odb",
68
+ "document-conversion",
69
+ "ink"
70
+ ],
71
+ "license": "MIT",
72
+ "packageManager": "pnpm@11.6.0",
73
+ "dependencies": {
74
+ "commander": "^15.0.0",
75
+ "documents.js": "^1.54.5",
76
+ "ink": "^7.1.1",
77
+ "ink-text-input": "^6.0.0",
78
+ "odf.js": "^1.10.4",
79
+ "react": "^19.2.8"
80
+ },
81
+ "devDependencies": {
82
+ "@arethetypeswrong/cli": "^0.18.5",
83
+ "@commitlint/cli": "^21.2.1",
84
+ "@commitlint/config-conventional": "^21.2.0",
85
+ "@eslint/js": "^10.0.1",
86
+ "@semantic-release/changelog": "^7.0.0",
87
+ "@semantic-release/git": "^11.0.1",
88
+ "@types/node": "^26.1.2",
89
+ "@types/react": "^19.2.18",
90
+ "@vitest/coverage-v8": "^4.1.10",
91
+ "eslint": "^10.8.0",
92
+ "eslint-plugin-react-hooks": "^7.1.1",
93
+ "globals": "^17.8.0",
94
+ "husky": "^9.1.7",
95
+ "ink-testing-library": "^4.0.0",
96
+ "lint-staged": "^17.3.0",
97
+ "publint": "^0.3.22",
98
+ "semantic-release": "^25.0.8",
99
+ "tsdown": "^0.22.14",
100
+ "typescript": "^6.0.3",
101
+ "typescript-eslint": "^8.65.0",
102
+ "vitest": "^4.1.10"
103
+ }
5
104
  }