-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1019 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1019 Bytes
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
{
"name": "sniff",
"version": "0.1.8",
"private": true,
"description": "LLM-integrated interception proxy for paired pentesting",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"dev": "bash scripts/dev.sh",
"build": "bash scripts/build.sh",
"package": "electron-builder",
"package:mac": "electron-builder --mac",
"package:win": "electron-builder --win",
"package:linux": "electron-builder --linux",
"test": "npm run test:unit && npm run test:proxy",
"test:unit": "vitest run",
"test:proxy": "vitest run --project backend-integration",
"test:e2e": "playwright test",
"lint": "eslint ."
},
"engines": {
"node": ">=20.0.0"
},
"devDependencies": {
"electron-builder": "^25.1.8",
"vitest": "^4.1.2"
},
"dependencies": {
"@tailwindcss/typography": "^0.5.19",
"@types/js-beautify": "^1.14.3",
"@types/prismjs": "^1.26.6",
"js-beautify": "^1.15.4",
"prismjs": "^1.30.0",
"react-markdown": "^10.1.0"
}
}