-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.34 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
{
"name": "native-powerpoint-doc-editor",
"version": "1.0.19",
"description": "Open, search, and edit DOCX and PPTX files directly in your vault.",
"main": "main.js",
"type": "module",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production && node scripts/check-mobile-compat.mjs",
"check:mobile": "node scripts/check-mobile-compat.mjs",
"smoke": "node scripts/smoke-docxidian-load.cjs",
"smoke:chart-axis": "node scripts/smoke-chart-axis-format.mjs",
"smoke:chart-data": "node scripts/smoke-chart-data-edit.mjs",
"smoke:generated-text": "node scripts/smoke-generated-text-edit.mjs",
"smoke:halos": "node scripts/smoke-text-halos.mjs",
"smoke:selection-geometry": "node scripts/smoke-selection-geometry.mjs",
"smoke:selection-box-batching": "node scripts/smoke-selection-box-batching.mjs",
"smoke:annotate-text-offsets": "node scripts/smoke-annotate-text-offsets.mjs",
"smoke:fonts": "node scripts/smoke-font-fidelity.mjs",
"smoke:objects": "node scripts/smoke-object-clipboard.mjs",
"smoke:pptx-js": "node scripts/smoke-pptx-js-engine.mjs",
"smoke:mobile-pptx": "node scripts/smoke-mobile-pptx.mjs",
"regen:pptx-js": "node scripts/regen-pptx-js-engine.mjs",
"smoke:pptx-sample": "node scripts/smoke-online-powerpoint-sample.mjs",
"visual:caret": "node scripts/visual-inline-caret.mjs",
"visual:zoom": "node scripts/visual-powerpoint-zoom.mjs",
"version": "node version-bump.mjs && git add manifest.json versions.json",
"lint": "eslint \"src/**/*.{ts,tsx}\""
},
"keywords": [],
"license": "0-BSD",
"devDependencies": {
"@eslint/js": "9.30.1",
"@eslint/json": "0.14.0",
"@microsoft/eslint-plugin-sdl": "1.1.0",
"@types/node": "^22.10.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"electron": "^39.8.10",
"esbuild": "0.28.1",
"eslint-plugin-no-unsanitized": "4.1.5",
"eslint-plugin-obsidianmd": "0.3.0",
"globals": "14.0.0",
"jiti": "2.6.1",
"tslib": "2.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "8.35.1"
},
"dependencies": {
"@eigenpal/docx-editor-i18n": "^1.0.1",
"@eigenpal/docx-editor-react": "^1.0.0",
"html2canvas": "^1.4.1",
"jszip": "^3.10.1",
"obsidian": "latest",
"pptx-svg": "^0.5.10",
"prosemirror-state": "^1.4.4",
"prosemirror-view": "^1.41.8",
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}