stack/apps/mock-oauth-server/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

27 lines
675 B
JSON

{
"name": "@hexclave/mock-oauth-server",
"version": "1.0.0",
"repository": "https://github.com/hexclave/hexclave",
"private": true,
"main": "index.js",
"scripts": {
"start": "tsx src/index.ts",
"dev": "tsx watch --clear-screen=false src/index.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"clean": "rimraf dist && rimraf node_modules"
},
"dependencies": {
"@types/express": "^5.0.0",
"@types/oidc-provider": "^8.5.1",
"body-parser": "^1.20.3",
"express": "^4.21.2",
"handlebars": "^4.7.8",
"oidc-provider": "^8.5.1"
},
"devDependencies": {
"tsx": "^4.16.2"
},
"packageManager": "pnpm@10.23.0"
}