-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.41 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.41 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
{
"name": "leedpdf",
"private": true,
"version": "2.30.0",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"prev": "pnpm install && pnpm build && pnpm preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint . --ext .js,.ts,.svelte",
"lint:fix": "eslint . --ext .js,.ts,.svelte --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"tauri:build:debug": "tauri build --debug",
"tauri:check": "cd src-tauri && cargo check"
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"@playwright/test": "^1.58.2",
"@sveltejs/adapter-vercel": "^6.3.3",
"@sveltejs/enhanced-img": "^0.10.3",
"@sveltejs/kit": "2.53.4",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/cli": "^2.10.1",
"@testing-library/jest-dom": "^6.9.1",
"@types/node": "^20.19.33",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"eslint-plugin-svelte": "^3.15.1",
"jsdom": "^28.1.0",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.5.1",
"svelte": "5.53.7",
"svelte-check": "^4.4.5",
"svelte-eslint-parser": "^1.6.0",
"terser": "^5.46.0",
"typescript": "^5.9.3",
"vite": "7.3.1",
"vitest": "^3.2.4"
},
"pnpm": {
"overrides": {
"happy-dom": "^20.0.2",
"cookie": "0.7.0"
},
"onlyBuiltDependencies": [
"core-js",
"esbuild",
"protobufjs",
"sharp"
]
},
"dependencies": {
"@tailwindcss/typography": "^0.5.19",
"@tauri-apps/plugin-deep-link": "^2.4.7",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-fs": "^2.4.5",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-shell": "^2.3.5",
"@tauri-apps/plugin-updater": "~2.10.0",
"@vercel/analytics": "^1.6.1",
"appwrite": "^23.0.0",
"autoprefixer": "^10.4.27",
"jspdf": "^4.2.0",
"jszip": "^3.10.1",
"lucide-svelte": "^0.577.0",
"pdf-lib": "^1.17.1",
"pdfjs-dist": "5.5.207",
"postcss": "^8.5.8",
"posthog-js": "^1.359.1",
"tailwindcss": "^3.4.19"
}
}