-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3.18 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 3.18 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
{
"name": "warden",
"version": "0.2.4",
"private": true,
"type": "module",
"description": "Warden — the local AI gateway. Your admin writes the rules; no prompt can break them. 100% on-device via QVAC.",
"productName": "Warden",
"author": "MartinPuli",
"license": "Apache-2.0",
"main": "desktop/dist/main.js",
"engines": {
"node": ">=22.17"
},
"scripts": {
"setup": "tsx scripts/setup.ts",
"smoke": "tsx scripts/smoke.ts",
"smoke:models": "tsx scripts/smoke-model-management.ts",
"measure:documents": "tsx scripts/measure-document-pairs.ts",
"dev": "tsx watch src/server/index.ts",
"build": "tsc -p tsconfig.build.json && tsc -p desktop/tsconfig.json && node scripts/copy-dist-assets.mjs",
"start": "node dist/server/index.js",
"app:dev": "pnpm run build && electron .",
"app:package": "pnpm run build && electron-forge package",
"app:make": "pnpm run build && electron-forge make",
"redteam": "tsx src/redteam/runner.ts",
"bench": "tsx scripts/bench-adjudicator.ts",
"report": "tsx scripts/rerender-report.ts",
"typecheck": "tsc --noEmit",
"test": "node scripts/test-all.mjs",
"test:documents": "tsx scripts/test-documents.ts",
"test:hook-documents": "tsx scripts/test-hook-documents.ts",
"test:proxy-documents": "tsx scripts/test-proxy-documents.ts",
"test:model-management": "tsx scripts/test-model-management.ts",
"test:prompts": "tsx scripts/test-prompt-management.ts",
"test:console": "node scripts/test-console.mjs",
"verify-audit": "tsx scripts/verify-audit.ts",
"permalinks": "tsx scripts/permalinks.ts",
"benchmark": "tsx scripts/benchmark.ts",
"test:vote": "tsx scripts/test-vote.ts",
"test:hook": "tsx scripts/test-hook.ts",
"test:cli": "tsx scripts/test-cli-compiler.ts",
"test:compiler-setup": "tsx scripts/test-claude-setup.ts",
"test:schema": "tsx scripts/test-draft-schema.ts",
"test:screen": "tsx scripts/test-screen.ts",
"test:desktop": "tsx scripts/test-desktop-lib.ts",
"test:auth": "tsx scripts/test-auth.ts",
"test:rules": "tsx scripts/test-rules-for-actor.ts",
"eval": "tsx scripts/eval.ts",
"eval:lint": "tsx scripts/eval-lint.ts",
"compare": "tsx scripts/compare.ts",
"measurements": "tsx scripts/measurements.ts",
"test:remote": "tsx scripts/test-remote-boundary.ts"
},
"dependencies": {
"@napi-rs/canvas": "1.0.8",
"@qvac/sdk": "^0.17.1",
"@tesseract.js-data/eng": "1.0.0",
"@tesseract.js-data/spa": "1.0.0",
"express": "^5.1.0",
"image-size": "2.0.2",
"pdfjs-dist": "6.3.289",
"require-asset": "^1.2.2",
"saxes": "6.0.0",
"tesseract.js": "7.0.0",
"yauzl": "3.4.0",
"zod": "^4.1.5"
},
"devDependencies": {
"@electron-forge/cli": "^7.11.2",
"@electron-forge/maker-dmg": "^7.11.2",
"@electron-forge/maker-squirrel": "^7.11.2",
"@electron-forge/maker-zip": "^7.11.2",
"@electron-forge/plugin-base": "^7.11.2",
"@types/express": "^5.0.3",
"@types/node": "^24.3.0",
"@types/yauzl": "3.4.0",
"electron": "^43.0.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
},
"bin": {
"warden-hook": "./bin/warden-hook.mjs"
},
"packageManager": "pnpm@11.0.6"
}