-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
17 lines (17 loc) · 823 Bytes
/
package.json
File metadata and controls
17 lines (17 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"name": "edge-codex-access",
"version": "0.1.0",
"private": true,
"description": "A local bridge and Microsoft Edge extension that lets Codex inspect and operate Edge tabs.",
"type": "commonjs",
"scripts": {
"bridge": "node bridge/server.js",
"native:install": "powershell -ExecutionPolicy Bypass -File scripts/install-native-host.ps1",
"native:uninstall": "powershell -ExecutionPolicy Bypass -File scripts/uninstall-native-host.ps1",
"edge": "node bridge/edge-client.js",
"check": "node --check bridge/server.js && node --check bridge/native-host.js && node --check bridge/edge-client.js && node --check extension/background.js && node --check extension/content.js && node --check extension/dashboard.js && node --check extension/executor.js"
},
"engines": {
"node": ">=18"
}
}