chore: configure codex build environment
Build / build (push) Successful in 18s

This commit is contained in:
2026-07-17 14:16:54 -05:00
parent 8e4bb5861a
commit 4f4c2143da
8 changed files with 143 additions and 9 deletions
+11 -2
View File
@@ -5,6 +5,11 @@
"project_type": "chrome-extension",
"language": "typescript",
"package_manager": "npm",
"deployable_output": {
"path": "dist/",
"type": "chrome-extension",
"description": "Build output is self-contained and can be loaded directly as an unpacked Chrome extension."
},
"entrypoints": {
"popup_html": "index.html",
"popup_script": "src/main.ts",
@@ -14,10 +19,14 @@
"generated_manifest": "dist/manifest.json"
},
"commands": {
"install": "npm install",
"install": "npm ci",
"codex_setup": "npm run codex:setup",
"dev": "npm run dev",
"codex_dev": "npm run dev:codex",
"build": "npm run build",
"preview": "npm run preview"
"codex_build": "npm run build:codex",
"preview": "npm run preview",
"verify_dist": "npm run verify:dist"
},
"environment": {
"example_file": ".env.example",