bun-docx 0.1.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 (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +150 -0
  3. package/dist/index.js +17606 -0
  4. package/package.json +60 -0
package/package.json ADDED
@@ -0,0 +1,60 @@
1
+ {
2
+ "name": "bun-docx",
3
+ "version": "0.1.0",
4
+ "description": "CLI for AI agents (Claude, Codex) to read, edit, and comment on .docx files with full format fidelity.",
5
+ "keywords": [
6
+ "docx",
7
+ "openxml",
8
+ "ooxml",
9
+ "word",
10
+ "cli",
11
+ "ai",
12
+ "claude",
13
+ "codex",
14
+ "agentic"
15
+ ],
16
+ "license": "MIT",
17
+ "author": "Kirill Klimuk",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/kklimuk/docx-cli.git"
21
+ },
22
+ "homepage": "https://github.com/kklimuk/docx-cli#readme",
23
+ "bugs": "https://github.com/kklimuk/docx-cli/issues",
24
+ "type": "module",
25
+ "packageManager": "bun@1.3.13",
26
+ "bin": {
27
+ "docx": "./dist/index.js"
28
+ },
29
+ "files": [
30
+ "dist/index.js",
31
+ "README.md",
32
+ "LICENSE"
33
+ ],
34
+ "engines": {
35
+ "bun": ">=1.3.0"
36
+ },
37
+ "scripts": {
38
+ "dev": "bun src/index.ts",
39
+ "build": "bun build src/index.ts --outfile dist/index.js --target bun",
40
+ "build:binary": "bun build --compile --outfile=dist/docx src/index.ts",
41
+ "check": "biome check . && knip-bun && bunx tsc --noEmit",
42
+ "test": "bun test",
43
+ "test:unit": "bun test tests/core tests/cli",
44
+ "test:integration": "bun test tests/integration",
45
+ "prepack": "bun run build",
46
+ "prepare": "husky"
47
+ },
48
+ "devDependencies": {
49
+ "@biomejs/biome": "^2.4.10",
50
+ "@types/bun": "^1.3.13",
51
+ "husky": "^9.1.7",
52
+ "knip": "^6.3.0",
53
+ "typescript": "^6.0.2"
54
+ },
55
+ "dependencies": {
56
+ "fast-xml-builder": "^1.1.6",
57
+ "fast-xml-parser": "^5.7.2",
58
+ "jszip": "^3.10.1"
59
+ }
60
+ }