stack/examples/supabase/package.json
Bilal Godil 6a18fef9e7 chore(hexclave): point repository URLs at hexclave/hexclave ahead of repo rename
Update every package.json `repository` field (published + private), README
contributor links, CHANGELOG screenshot URLs, the stack-cli emulator default
repo, and docs-mintlify GitHub links from hexclave/stack-auth (and the legacy
stack-auth/stack-auth slug) to hexclave/hexclave, in preparation for renaming
the GitHub repository.

Deliberately left on the old slug:
- npm-publish.yaml Actions environment name (matches repo Settings, not a URL)
- DeepWiki repo ids in backend qa-reviewer / internal-tool (external index)
- legacy docs/ folder (dropped from the workspace, slated for removal)
2026-05-28 18:54:26 -07:00

29 lines
828 B
JSON

{
"name": "@hexclave/example-supabase",
"version": "1.0.0",
"repository": "https://github.com/hexclave/hexclave",
"private": true,
"scripts": {
"dev": "next dev --turbo --port ${NEXT_PUBLIC_HEXCLAVE_PORT_PREFIX:-81}15",
"clean": "rimraf .next && rimraf node_modules",
"build": "next build",
"start": "next start --port ${NEXT_PUBLIC_HEXCLAVE_PORT_PREFIX:-81}15"
},
"dependencies": {
"@hexclave/next": "workspace:*",
"@supabase/ssr": "latest",
"@supabase/supabase-js": "latest",
"jose": "^5.2.2",
"next": "^14.2.35",
"react": "^18.3.0",
"react-dom": "^18.3.0"
},
"devDependencies": {
"@types/node": "20.17.6",
"@types/react": "link:@types/react@18.3.12",
"@types/react-dom": "^18.3.12",
"typescript": "5.9.3"
},
"packageManager": "pnpm@10.23.0"
}