-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.8 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.8 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
{
"name": "mikerust-frontend",
"private": true,
"version": "0.5.2",
"description": "MikeRust frontend — clean-room Svelte 5 rewrite",
"license": "AGPL-3.0-only",
"type": "module",
"scripts": {
"dev": "vite",
"build": "svelte-check --tsconfig ./tsconfig.json && vite build",
"preview": "vite preview",
"typecheck": "svelte-check --tsconfig ./tsconfig.json",
"lint": "eslint src",
"format": "prettier --write src",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"license-audit": "license-checker --onlyAllow 'MIT;ISC;Apache-2.0;BSD-2-Clause;BSD-3-Clause;0BSD;CC0-1.0;Unlicense;AGPL-3.0-only' --excludePrivatePackages --production"
},
"dependencies": {
"@intlify/core-base": "^11.0.0",
"@tanstack/table-core": "^8.20.5",
"@tauri-apps/api": "^2.1.1",
"@tauri-apps/plugin-dialog": "^2.2.0",
"@tauri-apps/plugin-stronghold": "^2.0.1",
"@tauri-apps/plugin-window-state": "^2.2.0",
"docx-preview": "0.3.5",
"dompurify": "^3.2.3",
"lucide-svelte": "^0.469.0",
"marked": "^15.0.6",
"pdfjs-dist": "^4.10.38",
"shiki": "^1.26.1",
"xlsx": "0.18.5"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.49.1",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@tailwindcss/vite": "^4.0.0",
"@tauri-apps/cli": "^2.1.0",
"@vitest/ui": "^4.1.7",
"eslint": "^9.18.0",
"eslint-plugin-svelte": "^2.46.1",
"globals": "^17.6.0",
"jsdom": "^29.1.1",
"license-checker": "^25.0.1",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.2",
"svelte": "^5.16.0",
"svelte-check": "^4.1.1",
"tailwindcss": "^4.0.0",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.59.4",
"vite": "^6.4.2",
"vitest": "^4.1.7"
}
}