-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.09 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.09 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
{
"name": "mergist",
"version": "0.2.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tauri dev",
"dev:ui": "vite dev --host --port 1420",
"build": "npm run build:ui && tauri build",
"tauri": "tauri",
"build:ui": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"lint": "npm run lint:eslint && npm run lint:prettier && npm run lint:svelte",
"lint:eslint": "eslint . --ext .ts,.js,.svelte --report-unused-disable-directives --max-warnings=0",
"lint:prettier": "prettier --check \"src/**/*.{ts,js,svelte,css,md}\"",
"lint:svelte": "svelte-check --tsconfig ./tsconfig.json",
"format": "prettier --write \"src/**/*.{ts,js,svelte,css,md}\"",
"release:tag": "node scripts/release.js"
},
"dependencies": {
"@tauri-apps/api": "^2.9.1",
"@tauri-apps/plugin-dialog": "^2.4.2",
"@tauri-apps/plugin-fs": "^2.4.4",
"@tauri-apps/plugin-updater": "^2.9.0",
"@tauri-apps/plugin-process": "^2.3.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"gpt-tokenizer": "^3.4.0",
"shadcn-svelte": "^1.0.12",
"svelte": "^5.45.6",
"svelte-i18n": "^4.0.1",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@internationalized/date": "^3.10.0",
"@lucide/svelte": "^0.544.0",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@tailwindcss/vite": "^4.1.17",
"@tauri-apps/cli": "^2.9.5",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"bits-ui": "^2.14.4",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.13.1",
"globals": "^16.5.0",
"mode-watcher": "^1.1.0",
"prettier": "^3.7.4",
"prettier-plugin-svelte": "^3.4.0",
"svelte-check": "^4.3.4",
"svelte-eslint-parser": "^1.4.1",
"svelte-sonner": "^1.0.7",
"tailwind-variants": "^3.2.2",
"tailwindcss": "^4.1.17",
"tslib": "^2.8.1",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1",
"vite": "^7.2.6"
}
}