mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-13 21:01:21 +08:00
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)
41 lines
1.2 KiB
JSON
41 lines
1.2 KiB
JSON
{
|
|
"name": "@hexclave/example-tanstack-start-demo",
|
|
"version": "1.0.0",
|
|
"repository": "https://github.com/hexclave/hexclave",
|
|
"description": "TanStack Start demo app for Hexclave",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"typecheck": "tsc --noEmit",
|
|
"clean": "rimraf .output && rimraf node_modules",
|
|
"dev": "vite dev --port ${NEXT_PUBLIC_HEXCLAVE_PORT_PREFIX:-81}43",
|
|
"build": "vite build",
|
|
"start": "node .output/server/index.mjs",
|
|
"lint": "eslint --ext .ts,.tsx ."
|
|
},
|
|
"dependencies": {
|
|
"@hexclave/shared": "workspace:*",
|
|
"@hexclave/ui": "workspace:*",
|
|
"@hexclave/tanstack-start": "workspace:*",
|
|
"@tanstack/react-router": "^1.168.23",
|
|
"@tanstack/react-start": "^1.167.42",
|
|
"nitro": "^3.0.0",
|
|
"react": "19.2.1",
|
|
"react-dom": "19.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.13.0",
|
|
"@types/react": "19.2.1",
|
|
"@types/react-dom": "19.2.1",
|
|
"@vitejs/plugin-react": "^5.0.0",
|
|
"autoprefixer": "^10.4.20",
|
|
"postcss": "^8.4.47",
|
|
"rimraf": "^5.0.10",
|
|
"tailwindcss": "^3.4.14",
|
|
"typescript": "5.9.3",
|
|
"vite": "^7.0.0",
|
|
"vite-tsconfig-paths": "^4.3.2"
|
|
},
|
|
"packageManager": "pnpm@10.23.0"
|
|
}
|