-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.32 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
{
"name": "sessionview",
"private": true,
"version": "0.7.6",
"description": "Desktop app for browsing local AI coding sessions",
"author": "yury <yury.zero.21@gmail.com>",
"type": "module",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "vite",
"build": "npm run typecheck && vite build",
"test": "vitest run",
"tauri": "tauri",
"prepare": "lefthook install",
"check": "npm run typecheck && npm run lint",
"typecheck": "tsc --noEmit",
"lint": "biome ci src/ && eslint src/",
"knip": "knip",
"format": "biome format --write src/",
"format:check": "biome format src/"
},
"dependencies": {
"@base-ui/react": "^1.6.0",
"@lobehub/icons": "^5.10.1",
"@tauri-apps/api": "^2.11.1",
"@tauri-apps/plugin-dialog": "^2.7.1",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.10.1",
"@vscode/markdown-it-katex": "^1.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"diff": "^9.0.0",
"dompurify": "^3.4.11",
"i18next": "^26.3.4",
"katex": "^0.18.1",
"lucide-react": "^1.23.0",
"markdown-it": "^14.3.0",
"markdown-it-cjk-friendly": "^2.0.2",
"markdown-it-task-lists": "^2.1.1",
"mermaid": "^11.16.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-i18next": "^17.0.8",
"shiki": "^4.3.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"zustand": "^5.0.14"
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@biomejs/biome": "^2.5.2",
"@eslint/js": "^10.0.1",
"@rolldown/plugin-babel": "^0.2.3",
"@tailwindcss/vite": "^4.3.2",
"@tauri-apps/cli": "^2.11.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/babel__core": "^7.20.5",
"@types/markdown-it": "^14.1.2",
"@types/node": "^26.1.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^10.6.0",
"eslint-plugin-react-hooks": "^7.1.1",
"happy-dom": "^20.10.6",
"knip": "^6.25.0",
"lefthook": "^2.1.9",
"shadcn": "^4.13.0",
"tailwindcss": "^4.3.2",
"tw-animate-css": "^1.4.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.63.0",
"vite": "^8.1.3",
"vitest": "^4.1.10"
}
}