-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.1 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.1 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
{
"name": "obsidian-mdc",
"version": "1.0.0",
"description": "An AI-powered tool to convert PPTX, PDF, and DOCX files into clean, well-structured Markdown, complete with an Obsidian plugin for seamless integration.",
"main": "main.js",
"bin": {
"mdc": "./dist/cli.js"
},
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -skipLibCheck && node esbuild.config.mjs production",
"build-cli": "node build-cli.js",
"build-all": "npm run build && npm run build-cli",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"install-plugin": "ts-node install.ts",
"build-plugin": "npm run build && echo 'Plugin built successfully. Use npm run install-plugin to install to your Obsidian vault.'",
"mdc": "./dist/cli.js"
},
"keywords": [
"obsidian",
"plugin",
"markdown",
"converter",
"document",
"presentation",
"pptx",
"pdf",
"docx",
"ai",
"automation",
"cli"
],
"author": "",
"license": "MIT",
"dependencies": {
"@google/genai": "^0.13.0",
"axios": "^1.6.2",
"base64-js": "^1.5.1",
"commander": "^10.0.1",
"docx": "^8.0.4",
"dotenv": "^16.0.3",
"fs-extra": "^11.3.0",
"github-slugger": "^2.0.0",
"js-yaml": "^4.1.0",
"mdast-util-heading-range": "^4.0.0",
"mime-types": "^2.1.35",
"node-fetch": "^3.3.1",
"openai": "^4.20.0",
"p-limit": "^6.2.0",
"pdf-lib": "^1.17.1",
"pptxgenjs": "^3.12.0",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"sharp": "^0.32.1",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.5",
"@types/mdast": "^4.0.4",
"@types/mime-types": "^2.1.1",
"@types/node": "^18.16.3",
"@types/unist": "^3.0.3",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"builtin-modules": "3.3.0",
"esbuild": "^0.25.2",
"obsidian": "latest",
"ts-node": "^10.9.1",
"tslib": "2.4.0",
"typescript": "^5.0.4"
}
}