-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.67 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
{
"name": "queriously",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"dev:marketing": "cd apps/marketing && npm run dev",
"build:marketing": "cd apps/marketing && npm run build",
"preview": "vite preview",
"test:python": "python/.venv/bin/python3 -m unittest discover -s python/tests",
"test:rust": "cd src-tauri && CARGO_TARGET_DIR=/tmp/queriously-cargo-check cargo test",
"tauri": "tauri",
"tauri:build": "tauri build && rm -rf /Applications/Queriously.app && cp -R src-tauri/target/release/bundle/macos/Queriously.app /Applications/Queriously.app && echo '✓ Installed to /Applications/Queriously.app'"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.4",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-dialog": "^2",
"@tauri-apps/plugin-fs": "^2",
"@tauri-apps/plugin-opener": "^2",
"clsx": "^2.1.1",
"framer-motion": "^11.11.17",
"katex": "^0.16.11",
"lucide-react": "^0.460.0",
"pdfjs-dist": "^4.8.69",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"react-resizable-panels": "^2.1.7",
"tailwind-merge": "^2.5.4",
"zustand": "^4.5.5"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@types/katex": "^0.16.7",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.15",
"typescript": "~5.6.3",
"vite": "^5.4.11"
}
}