-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.02 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
{
"name": "simpler-red",
"private": true,
"version": "0.1.0",
"type": "module",
"description": "Simpler Redact (simpler.red — simplifying red tape): the local document redactor for professionals. A stock small model plus deterministic rails anonymize documents on your own hardware; nothing leaves the machine.",
"license": "Apache-2.0",
"scripts": {
"test": "node --test",
"verify": "npm run test",
"bench:live": "node bench/live-bench.mjs",
"bench:corpus": "node bench/corpus-bench.mjs",
"bench:all": "node bench/all-bench.mjs",
"audit": "node bench/audit-claims.mjs",
"model:verify": "node scripts/verify-model.mjs",
"dev": "vite",
"dev:app": "npm --prefix app/frontend run dev",
"build:app": "npm --prefix app/frontend run build",
"tauri": "tauri"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"@tauri-apps/cli": "^2.11.4",
"vite": "^6.4.3"
},
"dependencies": {
"@tauri-apps/api": "^2.11.1",
"@tauri-apps/plugin-dialog": "^2.7.2"
}
}