-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.41 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.41 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
{
"name": "privacy-filter",
"version": "1.0.0",
"description": "A local-first desktop app for filtering sensitive information from text with regex preview and local LLM deep filtering.",
"keywords": [
"privacy",
"tauri",
"react",
"llm",
"ollama",
"redaction",
"prompt-safety"
],
"homepage": "https://github.com/ChristopheZhao/Privacy-Filter",
"license": "MIT",
"bugs": {
"url": "https://github.com/ChristopheZhao/Privacy-Filter/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChristopheZhao/Privacy-Filter.git"
},
"engines": {
"node": ">=18"
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"test:deep-filter": "node --test src/components/TextFilter/deepFilterUtils.test.js",
"preview": "vite preview",
"bench:local-llm-filter": "node benchmarks/local-llm-filter/run-benchmark.js",
"tauri": "tauri",
"dev:tauri": "tauri dev",
"build:tauri": "tauri build"
},
"dependencies": {
"@fontsource/noto-sans-sc": "^5.2.9",
"@tauri-apps/api": "^2.1.1",
"@tauri-apps/plugin-log": "^2.0.0",
"lucide-react": "^0.462.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@tauri-apps/cli": "^2.1.0",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.15",
"vite": "^6.0.1"
}
}