mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-16 21:03:29 +00:00
2f9db37696
@googleapis/sheets ^5.0.5 -> ^14.0.0 and google-auth-library ^9.4.2 ->
^10.5.0. No source changes: the sheets_v4 shapes used in sheets.utils.ts
and the OAuth2Client/Credentials usage in sheets.service.ts are unchanged.
google-auth-library lands on 10 rather than the latest 11 on purpose.
@googleapis/sheets@14 reaches google-auth-library through
googleapis-common@8, which pins exactly 10.5.0; asking for ^11 installs
both copies and OAuth2Client stops being assignable to itself
("separate declarations of a private property 'redirectUri'").
googleapis-common@9 moves to ^11, so this can go to 11 once a
@googleapis/sheets release depends on it.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01NWs1vf42msmoJ21ABvQMpm
57 lines
1.9 KiB
JSON
57 lines
1.9 KiB
JSON
{
|
|
"name": "ontime-server",
|
|
"type": "module",
|
|
"main": "src/index.ts",
|
|
"version": "4.12.0",
|
|
"exports": "./src/index.js",
|
|
"dependencies": {
|
|
"@googleapis/sheets": "^14.0.0",
|
|
"@modelcontextprotocol/sdk": "^1.15.0",
|
|
"cookie": "1.0.2",
|
|
"cookie-parser": "1.4.7",
|
|
"cors": "2.8.6",
|
|
"dotenv": "^17.0.0",
|
|
"express": "5.2.1",
|
|
"express-static-gzip": "3.0.1",
|
|
"express-validator": "7.3.2",
|
|
"fast-equals": "^6.0.0",
|
|
"google-auth-library": "^10.5.0",
|
|
"lowdb": "^7.0.1",
|
|
"multer": "2.2.0",
|
|
"ontime-utils": "workspace:*",
|
|
"osc-min": "2.1.2",
|
|
"sanitize-filename": "^1.6.3",
|
|
"ws": "^8.18.0",
|
|
"xlsx": "^0.18.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cookie-parser": "1.4.10",
|
|
"@types/cors": "2.8.19",
|
|
"@types/express": "5.0.6",
|
|
"@types/multer": "2.1.0",
|
|
"@types/node": "catalog:",
|
|
"@types/ws": "^8.5.10",
|
|
"esbuild": "^0.28.0",
|
|
"ontime-types": "workspace:*",
|
|
"server-timing": "^3.3.3",
|
|
"ts-essentials": "catalog:",
|
|
"tsx": "^4.23.12",
|
|
"typescript": "catalog:",
|
|
"vitest": "catalog:"
|
|
},
|
|
"scripts": {
|
|
"addversion": "node -p \"'export const ONTIME_VERSION = ' + JSON.stringify(require('../../package.json').version) + ';'\" > src/ONTIME_VERSION.js",
|
|
"postinstall": "pnpm addversion",
|
|
"dev": "cross-env NODE_ENV=development tsx watch --tsconfig tsconfig.app.json ./src/index.ts",
|
|
"dev:electron": "pnpm dev",
|
|
"dev:inspect": "cross-env NODE_ENV=development tsx watch --tsconfig tsconfig.app.json --inspect ./src/index.ts",
|
|
"lint": "oxlint --quiet --type-aware",
|
|
"typecheck": "tsc -p tsconfig.app.json --noEmit",
|
|
"prebuild": "tsx --tsconfig tsconfig.app.json ./scripts/bundleDefaults.ts",
|
|
"build": "node esbuild.js",
|
|
"test": "cross-env IS_TEST=true vitest",
|
|
"test:inspect": "cross-env IS_TEST=true vitest --inspect --no-file-parallelism",
|
|
"test:pipeline": "cross-env IS_TEST=true vitest run"
|
|
}
|
|
}
|