aurochs 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.
- package/README.md +30 -0
- package/dist/aurochs-cli +60437 -0
- package/package.json +107 -0
package/README.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# aurochs
|
|
2
|
+
|
|
3
|
+
Parse, render, and edit Office documents (PPTX, DOCX, XLSX) in pure TypeScript. No native dependencies, no server required.
|
|
4
|
+
|
|
5
|
+
**[Demo](https://trkbt10.github.io/aurochs/)**
|
|
6
|
+
|
|
7
|
+
## Features
|
|
8
|
+
|
|
9
|
+
- Browser-based viewer & editor for PPTX / DOCX / XLSX
|
|
10
|
+
- Legacy format support (PPT, DOC, XLS) via built-in converters
|
|
11
|
+
- CLI for inspecting and previewing files (`aurochs pptx preview slides.pptx`)
|
|
12
|
+
- Figma `.fig` renderer (SVG / WebGL)
|
|
13
|
+
- PDF → PPTX converter
|
|
14
|
+
- Builder API for generating documents programmatically
|
|
15
|
+
- MCP server for AI assistant integration
|
|
16
|
+
- VS Code extension
|
|
17
|
+
|
|
18
|
+
## Setup
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
bun install
|
|
22
|
+
bun run dev:pages # start demo app
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
bun run test # run tests
|
|
27
|
+
bun run lint # lint
|
|
28
|
+
bun run typecheck # type check
|
|
29
|
+
bun run build:cli # build CLI
|
|
30
|
+
```
|