-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.16 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.16 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
{
"name": "studyshell",
"private": true,
"version": "0.2.1",
"description": "A Tauri-powered desktop study workspace with local file browsing, PDF annotation, note editing, and Vertex AI study assistance.",
"type": "module",
"scripts": {
"dev": "vite",
"typecheck": "tsc --noEmit",
"test": "node --experimental-strip-types tests/types.test.mjs",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri"
},
"repository": {
"type": "git",
"url": "https://github.com/tom-schneidr/studyshell.git"
},
"bugs": {
"url": "https://github.com/tom-schneidr/studyshell/issues"
},
"homepage": "https://github.com/tom-schneidr/studyshell#readme",
"license": "MIT",
"dependencies": {
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-rust": "^6.0.2",
"@codemirror/language": "^6.12.3",
"@codemirror/lint": "^6.9.5",
"@codemirror/search": "^6.6.0",
"@codemirror/state": "^6.6.0",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.41.0",
"@tailwindcss/vite": "^4.2.2",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-opener": "^2",
"@tiptap/pm": "^3.22.1",
"@tiptap/react": "^3.22.1",
"@tiptap/starter-kit": "^3.22.1",
"@types/katex": "^0.16.8",
"@types/turndown": "^5.0.6",
"clsx": "^2.1.1",
"dayjs": "^1.11.20",
"framer-motion": "^12.38.0",
"fuzzysort": "^3.1.0",
"katex": "^0.16.45",
"lucide-react": "^1.7.0",
"marked": "^17.0.5",
"pdf-lib": "^1.17.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-draggable": "^4.5.0",
"react-katex": "^3.1.0",
"react-pdf": "^10.4.1",
"splitpanes": "^4.0.4",
"tailwind-merge": "^3.5.0",
"tailwindcss": "^4.2.2",
"turndown": "^7.2.4"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"typescript": "~5.8.3",
"vite": "^7.0.4"
}
}