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