-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.16 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "orbit",
"private": true,
"version": "0.1.5-preview",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"prepare": "svelte-kit sync || echo ''",
"create-tool": "bun run ./scripts/create-tool.js",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "bunx --bun biome lint",
"format": "bunx --bun biome format --write ./src",
"tauri": "tauri",
"tauri:dev": "cross-env NODE_ENV=development tauri dev",
"tauri:build": "cross-env NODE_ENV=production tauri build",
"android:dev": "tauri android dev --open --host",
"ext:dev": "cd extension && bun run dev",
"ext:build": "cd extension && bun run build"
},
"devDependencies": {
"@internationalized/date": "^3.10.0",
"@sveltejs/enhanced-img": "^0.10.2",
"@sveltejs/kit": "^2.50.2",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@types/cropperjs": "^1.3.3",
"@types/node-forge": "^1.3.14",
"bits-ui": "^2.14.4",
"clsx": "^2.1.1",
"cropperjs": "^1.6.1",
"cross-env": "^10.1.0",
"svelte": "^5.49.2",
"svelte-check": "^4.3.6",
"svelte-sonner": "^1.0.7",
"tailwind-merge": "^3.4.0",
"tailwind-variants": "^3.2.2",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"vaul-svelte": "^1.0.0-next.7",
"vite": "^7.3.1"
},
"dependencies": {
"@embedpdf/core": "^2.8.0",
"@embedpdf/engines": "^2.8.0",
"@embedpdf/models": "^2.8.0",
"@embedpdf/plugin-annotation": "^2.8.0",
"@embedpdf/plugin-capture": "^2.8.0",
"@embedpdf/plugin-commands": "^2.8.0",
"@embedpdf/plugin-document-manager": "^2.8.0",
"@embedpdf/plugin-export": "^2.8.0",
"@embedpdf/plugin-fullscreen": "^2.8.0",
"@embedpdf/plugin-history": "^2.8.0",
"@embedpdf/plugin-i18n": "^2.8.0",
"@embedpdf/plugin-interaction-manager": "^2.8.0",
"@embedpdf/plugin-pan": "^2.8.0",
"@embedpdf/plugin-print": "^2.8.0",
"@embedpdf/plugin-redaction": "^2.8.0",
"@embedpdf/plugin-render": "^2.8.0",
"@embedpdf/plugin-rotate": "^2.8.0",
"@embedpdf/plugin-scroll": "^2.8.0",
"@embedpdf/plugin-search": "^2.8.0",
"@embedpdf/plugin-selection": "^2.8.0",
"@embedpdf/plugin-spread": "^2.8.0",
"@embedpdf/plugin-thumbnail": "^2.8.0",
"@embedpdf/plugin-tiling": "^2.8.0",
"@embedpdf/plugin-ui": "^2.8.0",
"@embedpdf/plugin-viewport": "^2.8.0",
"@embedpdf/plugin-zoom": "^2.8.0",
"@embedpdf/snippet": "^2.6.0",
"@fontsource-variable/google-sans": "^5.2.1",
"@lucide/svelte": "^0.561.0",
"@neslinesli93/qpdf-wasm": "^0.3.0",
"@pdf-lib/fontkit": "^1.1.1",
"@sveltejs/adapter-auto": "^7.0.1",
"@sveltejs/adapter-static": "^3.0.10",
"@tailwindcss/vite": "^4.1.18",
"@tauri-apps/cli": "^2.10.0",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-fs": "^2.4.5",
"@tauri-apps/plugin-opener": "~2",
"@types/sortablejs": "^1.15.9",
"heic2any": "^0.0.4",
"jszip": "^3.10.1",
"mode-watcher": "^1.1.0",
"nanoid": "^5.1.6",
"node-forge": "^1.3.3",
"pdf-lib": "^1.17.1",
"pdfjs-dist": "^5.4.624",
"sortablejs": "^1.15.7",
"tailwindcss": "^4.1.18",
"tesseract.js": "^7.0.0",
"xlsx": "^0.18.5"
},
"license": "GPL-3.0-only"
}