-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.16 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "opencode-rich-document-reader",
"version": "1.0.0",
"description": "An OpenCode plugin for reading DOCX, ODT, and PPTX documents as structured Markdown.",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ddbaron/opencode-rich-document-reader.git"
},
"bugs": {
"url": "https://github.com/ddbaron/opencode-rich-document-reader/issues"
},
"homepage": "https://github.com/ddbaron/opencode-rich-document-reader#readme",
"keywords": [
"opencode",
"opencode-plugin",
"docx",
"odt",
"pptx",
"officeparser"
],
"main": "./src/index.ts",
"exports": {
".": "./src/index.ts"
},
"files": [
"src",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=20"
},
"scripts": {
"check": "tsc --noEmit",
"test": "node --experimental-strip-types --test test/read-rich-document.test.ts"
},
"dependencies": {
"@opencode-ai/plugin": "1.18.18",
"officeparser": "7.5.1"
},
"devDependencies": {
"@types/node": "22.10.2",
"fflate": "0.8.3",
"typescript": "5.8.2"
}
}