-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.11 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.11 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
88
89
90
91
92
{
"name": "studyshell",
"private": true,
"version": "0.2.1",
"description": "A Tauri-powered desktop study workspace with local file browsing, PDF annotation, note editing, and FreeRouter study assistance.",
"author": "Tom Schneidr",
"type": "module",
"scripts": {
"dev": "vite",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"test": "node --experimental-strip-types tests/types.test.mjs",
"prebuild": "node scripts/sync-version.mjs",
"preversion": "node scripts/sync-version.mjs",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"verify:frontend": "npm run format:check && npm run lint && npm run typecheck && npm run test",
"verify:rust": "cargo fmt --manifest-path src-tauri/Cargo.toml --check && cargo clippy --manifest-path src-tauri/Cargo.toml --target-dir scratch/cargo-target --lib -- -D warnings && cargo test --manifest-path src-tauri/Cargo.toml --target-dir scratch/cargo-target --lib",
"verify": "npm run verify:frontend && npm run verify:rust"
},
"engines": {
"node": ">=22"
},
"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": {
"@eslint/js": "^9.39.4",
"@tauri-apps/cli": "^2",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"eslint": "^9.39.4",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react-hooks": "^7.0.1",
"prettier": "^3.7.4",
"typescript": "~5.8.3",
"typescript-eslint": "^8.48.0",
"vite": "^7.0.4"
}
}