-
-
Notifications
You must be signed in to change notification settings - Fork 193
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 1.47 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
{
"scripts": {
"test:rag:benchmark": "node tests/rag-benchmark.test.js",
"test:rag:e2e": "node tests/rag-e2e.test.js",
"test:rag:scale": "node tests/rag-scale-benchmark.test.js",
"test:aiprompt:smoke": "node scripts/playwright-aiprompt-smoke.cjs",
"test:xss:sanitizer": "node tests/xss-sanitizer.test.js",
"test:aiprompt:adversarial": "node scripts/aiprompt-ssnpatch-adversarial-e2e.cjs",
"test:aiprompt:conversation": "node scripts/playwright-aiprompt-conversation-e2e.cjs",
"test:aiprompt:expectations": "node scripts/playwright-aiprompt-expectations-e2e.cjs",
"local-tts-bridge": "node scripts/local-tts-bridge.cjs",
"r2:large-assets:plan": "node scripts/sync-large-assets-r2.cjs",
"r2:large-assets:verify": "node scripts/sync-large-assets-r2.cjs --verify",
"r2:large-assets:upload": "node scripts/sync-large-assets-r2.cjs --upload",
"lint:js": "eslint .",
"lint:js:background:strict": "eslint background.js --rule \"no-redeclare:error\" --rule \"no-shadow:error\" --rule \"no-unreachable:error\" --rule \"no-duplicate-case:error\" --rule \"no-mixed-spaces-and-tabs:error\"",
"format:js:background": "prettier --write background.js",
"lint:js:background:indent-audit": "prettier --check background.js",
"lint:js:background:format-audit": "prettier --check background.js"
},
"dependencies": {
"playwright": "^1.58.2",
"python3": "^0.0.1"
},
"devDependencies": {
"eslint": "^10.1.0",
"prettier": "^3.8.1"
}
}