-
-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.58 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.58 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
{
"name": "pdfx",
"productName": "PDFx",
"version": "2026.6.1-beta.0",
"description": "PDFX — a backwards-compatible PDF extension for multi-document files, with a minimal viewer",
"main": "./out/main/index.js",
"author": "Alex Gounis",
"license": "MIT",
"scripts": {
"format": "prettier --write .",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "yarn typecheck:node && yarn typecheck:web",
"build:native": "node scripts/build-native.mjs",
"start": "electron-vite preview",
"dev": "electron-vite dev --watch",
"dev:web": "vite --config vite.config.web.ts",
"build:web": "yarn typecheck:web && vite build --config vite.config.web.ts",
"preview:web": "vite preview --config vite.config.web.ts",
"build": "yarn typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps && yarn build:native && node scripts/copy-ocr-assets.mjs && node scripts/copy-pdf-assets.mjs",
"build:unpack": "yarn build && electron-builder --dir",
"build:win": "yarn build && electron-builder --win",
"build:mac": "electron-vite build && electron-builder --mac",
"build:linux": "electron-vite build && electron-builder --linux",
"build:linux:flatpak": "electron-vite build && electron-builder --linux flatpak"
},
"dependencies": {
"@electron-toolkit/preload": "3.0.2",
"@electron-toolkit/utils": "4.0.0"
},
"devDependencies": {
"@ai-sdk/anthropic": "4.0.16",
"@ai-sdk/google": "4.0.19",
"@ai-sdk/openai": "4.0.16",
"@electron-toolkit/tsconfig": "1.0.1",
"@pdf-lib/fontkit": "1.1.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",
"@types/d3-selection": "3.0.11",
"@types/d3-zoom": "3.0.8",
"@types/node": "22.19.21",
"@types/react": "19.2.17",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "4.7.0",
"ai": "7.0.32",
"d3-selection": "3.0.0",
"d3-zoom": "3.0.0",
"dejavu-fonts-ttf": "2.37.3",
"electron": "38.4.0",
"electron-builder": "25.1.8",
"electron-vite": "4.0.1",
"fflate": "0.8.3",
"framer-motion": "12.42.2",
"node-addon-api": "8.8.0",
"node-gyp": "11.5.0",
"pdf-lib": "1.17.1",
"pdfjs-dist": "5.7.284",
"prettier": "3.8.4",
"react": "19.2.7",
"react-dom": "19.2.7",
"tesseract.js": "7.0.0",
"tesseract.js-core": "7.0.0",
"typescript": "5.9.3",
"vite": "7.3.5",
"zod": "4.4.3"
}
}