-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.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
{
"name": "anything",
"version": "3.4.8",
"description": "로컬 문서 검색 앱 - Everything 대항마",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"tauri:dev": "set WEBVIEW2_ADDITIONAL_BROWSER_ARGUMENTS=--no-proxy-server --disable-background-networking --disable-features=msSmartScreenProtection&& tauri dev",
"tauri:dev:mac": "tauri dev",
"download-model": "powershell -File scripts/download-model.ps1",
"download-vcredist": "powershell -File scripts/download-vcredist.ps1",
"bundle-kordoc": "powershell -ExecutionPolicy Bypass -File scripts/bundle-kordoc.ps1",
"setup-mac-resources": "bash scripts/setup-macos-resources.sh",
"tauri:build": "pnpm run download-vcredist && pnpm run download-model && pnpm run bundle-kordoc && tauri build",
"tauri:build:mac": "pnpm run setup-mac-resources && tauri build --target aarch64-apple-darwin"
},
"keywords": [
"document",
"search",
"hwpx",
"tauri"
],
"author": "Chris",
"license": "BUSL-1.1",
"packageManager": "pnpm@10.20.0",
"devDependencies": {
"@tailwindcss/vite": "^4.1.18",
"@tauri-apps/cli": "^2.9.6",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"png-to-ico": "^2.1.8",
"sharp": "^0.33.5",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"vite": "^7.3.2"
},
"pnpm": {
"overrides": {
"rollup": ">=4.59.0",
"picomatch": ">=4.0.4"
}
},
"dependencies": {
"@crabnebula/tauri-plugin-drag": "^2.1.0",
"@fontsource-variable/outfit": "^5.2.8",
"@tauri-apps/api": "^2.9.1",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-process": "^2.3.0",
"@tauri-apps/plugin-updater": "^2.9.0",
"clsx": "^2.1.1",
"katex": "^0.16.45",
"lucide-react": "^0.469.0",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-markdown": "^10.1.0",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0"
}
}