f88687c182
- Explicitly track latest core (1.6.23); the @better-auth/cli lags at 1.4.21 and pulled a second core copy — replaced with a getMigrations() script on the same version (src/migrate.ts). - CI build job matches the proven pattern (no setup-buildx; plain build/push).
25 lines
690 B
JSON
25 lines
690 B
JSON
{
|
|
"name": "intervalsicu-mcp-auth",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"description": "Better Auth OAuth/OIDC server for the Intervals.icu MCP product — Google/Apple sign-in, DCR-capable, issues JWTs the MCP server verifies.",
|
|
"scripts": {
|
|
"dev": "tsx watch src/server.ts",
|
|
"build": "tsc -p tsconfig.json",
|
|
"start": "node dist/server.js",
|
|
"migrate": "node dist/migrate.js",
|
|
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"better-auth": "^1.6.23",
|
|
"pg": "^8.13.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.10.0",
|
|
"@types/pg": "^8.11.10",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "^5.7.2"
|
|
}
|
|
}
|