-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 881 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 881 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
{
"name": "framelink",
"version": "0.1.0",
"private": true,
"description": "Prototype Chrome extension (MV3) for high-performance network interception across tabs and frames for DLP-style browser security products.",
"keywords": [
"chrome-extension",
"mv3",
"browser-extension",
"dlp",
"data-loss-prevention",
"network-interception",
"shared-worker",
"web-worker",
"content-script",
"iframe",
"browser-security",
"saas-security",
"google-drive"
],
"type": "module",
"scripts": {
"build": "node build.mjs",
"watch": "node build.mjs --watch",
"test": "npm run build && playwright test",
"test:e2e": "npm run test"
},
"devDependencies": {
"@playwright/test": "^1.53.0",
"@types/chrome": "^0.0.322",
"@types/node": "^24.5.2",
"esbuild": "^0.25.2",
"typescript": "^5.8.3"
}
}