forked from jasonulbright/Open-PDF-Studio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.18 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
{
"name": "openpdfstudio",
"version": "2.0.0",
"description": "Modern open-source PDF manipulation studio that vendors upstream Ghostscript",
"scripts": {
"dev": "cargo tauri dev",
"dev:renderer": "vite --config vite.config.ts",
"build:renderer": "node scripts/sync-ocr-assets.mjs && vite build --config vite.config.ts",
"build": "cargo tauri build",
"tauri": "tauri",
"prepackage": "powershell -ExecutionPolicy Bypass -File scripts/setup-python-embed.ps1 && powershell -ExecutionPolicy Bypass -File scripts/bundle-ghostscript.ps1",
"package": "npm run prepackage && cargo tauri build",
"lint": "eslint src tests",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"sync-ocr": "node scripts/sync-ocr-assets.mjs",
"postinstall": "node scripts/sync-ocr-assets.mjs"
},
"dependencies": {
"@radix-ui/react-dialog": "1.1.15",
"@radix-ui/react-dropdown-menu": "2.1.16",
"@radix-ui/react-menubar": "1.1.15",
"@radix-ui/react-tooltip": "1.2.8",
"@tauri-apps/api": "2.11.0",
"@tauri-apps/plugin-dialog": "2.7.1",
"@tauri-apps/plugin-fs": "2.5.1",
"@tauri-apps/plugin-shell": "2.3.5",
"@tauri-apps/plugin-updater": "2.10.1",
"@tesseract.js-data/deu": "1.0.0",
"@tesseract.js-data/eng": "1.0.0",
"@tesseract.js-data/fra": "1.0.0",
"@tesseract.js-data/spa": "1.0.0",
"d3-selection": "3.0.0",
"d3-zoom": "3.0.0",
"pdf-lib": "1.17.1",
"pdfjs-dist": "6.0.227",
"react": "19.2.7",
"react-dom": "19.2.7",
"tesseract.js": "7.0.0",
"tesseract.js-core": "7.0.0"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@tailwindcss/postcss": "4.3.0",
"@tauri-apps/cli": "2.11.2",
"@types/d3-selection": "3.0.11",
"@types/d3-zoom": "3.0.8",
"@types/node": "25.9.1",
"@types/react": "19.2.16",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "6.0.2",
"eslint": "10.4.1",
"eslint-plugin-react-hooks": "7.1.1",
"globals": "17.6.0",
"postcss": "8.5.15",
"tailwindcss": "4.3.0",
"typescript": "6.0.3",
"typescript-eslint": "8.60.1",
"vite": "8.0.16",
"vitest": "4.1.8"
},
"author": "Jason Ulbright",
"license": "MIT",
"private": true
}