-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.43 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
{
"name": "codex-firefox-bridge",
"version": "0.1.2",
"description": "Firefox extension and local native bridge for Codex browser control workflows.",
"private": true,
"type": "module",
"license": "MIT",
"homepage": "https://github.com/MacWulf/codex-firefox-bridge#readme",
"repository": {
"type": "git",
"url": "https://github.com/MacWulf/codex-firefox-bridge.git"
},
"bugs": {
"url": "https://github.com/MacWulf/codex-firefox-bridge/issues"
},
"keywords": [
"codex",
"firefox",
"webextension",
"native-messaging",
"browser-automation"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"build:extension": "npm.cmd run build && node dist/extension/build-extension.js",
"install:firefox-native-host": "node dist/installer/cli.js",
"lint:firefox": "web-ext lint --source-dir extension-dist",
"run:firefox": "npm.cmd run build:extension && node scripts/run-firefox-extension.mjs",
"package:extension": "npm.cmd run build:extension && node scripts/package-firefox-extension.mjs",
"package:local-bridge": "npm.cmd run build && node scripts/package-firefox-local-bridge.mjs",
"package:source": "node scripts/package-firefox-public-release.mjs",
"package:firefox": "npm.cmd run build:extension && node scripts/package-firefox.mjs"
},
"devDependencies": {
"@types/node": "^24.0.0",
"jszip": "^3.10.1",
"typescript": "^5.9.3",
"web-ext": "^10.1.0"
}
}