forked from rudi-q/leed_pdf_viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.45 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.45 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
{
"name": "leedpdf",
"private": true,
"version": "2.23.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.1",
"@playwright/test": "^1.57.0",
"@sveltejs/adapter-vercel": "^6.2.0",
"@sveltejs/enhanced-img": "^0.9.2",
"@sveltejs/kit": "^2.49.1",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@tauri-apps/api": "^2.9.1",
"@tauri-apps/cli": "^2.9.5",
"@testing-library/jest-dom": "^6.9.1",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"eslint-plugin-svelte": "^3.13.1",
"jsdom": "^27.2.0",
"prettier": "^3.7.4",
"prettier-plugin-svelte": "^3.4.0",
"svelte": "^5.45.6",
"svelte-check": "^4.3.4",
"svelte-eslint-parser": "^1.4.1",
"terser": "^5.44.1",
"typescript": "^5.9.3",
"vite": "7.2.7",
"vitest": "^3.2.4"
},
"pnpm": {
"overrides": {
"happy-dom": "^20.0.2",
"cookie": "0.7.0"
},
"onlyBuiltDependencies": [
"core-js",
"esbuild",
"sharp"
]
},
"dependencies": {
"@tailwindcss/typography": "^0.5.19",
"@tauri-apps/plugin-deep-link": "^2.4.5",
"@tauri-apps/plugin-dialog": "^2.4.2",
"@tauri-apps/plugin-fs": "^2.4.4",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-shell": "^2.3.3",
"@tauri-apps/plugin-updater": "~2",
"@types/markdown-it": "^14.1.2",
"@vercel/analytics": "^1.6.1",
"appwrite": "^21.5.0",
"autoprefixer": "^10.4.22",
"jspdf": "^3.0.4",
"jszip": "^3.10.1",
"lucide-svelte": "^0.556.0",
"markdown-it": "^12.3.2",
"pdf-lib": "^1.17.1",
"pdfjs-dist": "5.4.449",
"postcss": "^8.5.6",
"posthog-js": "^1.302.2",
"tailwindcss": "^3.4.17"
}
}