Skip to content
13 changes: 13 additions & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Security Policy

## Supported Versions

no releases yet.

Comment on lines +5 to +6

Copilot AI Apr 29, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

“Supported Versions” currently just says “no releases yet.” which is ambiguous for reporters. Consider stating explicitly what is supported (e.g., default branch / latest commit) and, if applicable, providing a simple supported-versions table (as GitHub’s SECURITY.md template expects). Also capitalize the sentence start.

Suggested change
no releases yet.
| Version | Supported |
| ------- | ------------------ |
| Default branch / latest commit | :white_check_mark: |
There are no tagged releases yet.

Copilot uses AI. Check for mistakes.
## Reporting a Vulnerability

Please contact l8npjhnpy@mozmail.com with details.

We can't stop you from disclosing and don't want to, but we'd appreciate a period of time to get the fix in before you go public.

Just a request, I'm not your Dad.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
"lint:trunk": "bun run trunk check -a",
"lint:trunk:fix": "bun run trunk check -a --fix",
"lint:types": "bun run tsc --noEmit",
"postinstall": "bun run-s postinstall:trunk:install postinstall:trunk:upgrade postinstall:prepare types format",
"postinstall": "bun run-s postinstall:prepare types format",

Copilot AI Apr 29, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

postinstall no longer runs postinstall:trunk:install / postinstall:trunk:upgrade, but project docs still state that the postinstall hook “sets up Trunk” (README.md:107, GETTING-STARTED.md:147). Either update those docs, or adjust the install flow so Trunk is still initialized before format/format:trunk runs during postinstall.

Suggested change
"postinstall": "bun run-s postinstall:prepare types format",
"postinstall": "bun run-s postinstall:prepare types postinstall:trunk:install format",

Copilot uses AI. Check for mistakes.

Copilot AI Apr 29, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR title mentions upgrading development dependencies, but this change set doesn’t update any dependency/devDependency versions in package.json. Consider updating the PR title/description to match the actual changes, or include the intended dependency upgrades.

Copilot uses AI. Check for mistakes.
"postinstall:prepare": "bun run nuxt prepare",
"postinstall:trunk:install": "bun run trunk install --ci",
"postinstall:trunk:upgrade": "bun run trunk upgrade --ci",
Expand Down
Loading