mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-16 21:03:29 +00:00
e3f6c8295e
Bumps the exact-pinned deps, which caret ranges never pick up: turbo, @playwright/test, @sentry/vite-plugin, vite-plugin-compression2, react-icons, @base-ui/react, electron-builder, and the ts-essentials / rimraf catalog entries. Plus dotenv ^16 -> ^17 (one consumer, `import 'dotenv/config'`) and wait-on ^7 -> ^9 (devDep, one CLI call). No CI change needed for playwright: the workflow already derives its browser cache key from `pnpm ls @playwright/test`. Deliberately does NOT run a blanket `pnpm update -r`. Refreshing caret drift pulls @types/express-serve-static-core 5.0.6 -> 5.1.3, which widens `req.params` values to `string | string[]` and fails typecheck in 39 places across 8 routers. The widening is correct — express 5 can produce array params — but adopting it is a source change of its own, and pnpm 11 cannot pin around it (overrides in package.json are silently ignored, and the pnpm-workspace.yaml equivalent does not re-resolve). Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01NWs1vf42msmoJ21ABvQMpm
139 lines
3.5 KiB
JSON
139 lines
3.5 KiB
JSON
{
|
|
"name": "ontime-electron",
|
|
"version": "4.12.0",
|
|
"author": "Carlos Valente",
|
|
"description": "Time keeping for live events",
|
|
"repository": "https://github.com/cpvalente/ontime",
|
|
"keywords": [
|
|
"ontime",
|
|
"timer",
|
|
"stage timer",
|
|
"rundown"
|
|
],
|
|
"license": "AGPL-3.0-only",
|
|
"main": "src/main.js",
|
|
"devDependencies": {
|
|
"electron": "38.2.1",
|
|
"electron-builder": "26.15.3",
|
|
"wait-on": "^9.0.0"
|
|
},
|
|
"scripts": {
|
|
"dev:electron": "wait-on http://localhost:3000 && cross-env NODE_ENV=development electron .",
|
|
"lint": "oxlint --quiet --type-aware",
|
|
"dist-win": "electron-builder --publish=never --x64 --win",
|
|
"dist-mac": "electron-builder --publish=never --mac",
|
|
"dist-linux": "electron-builder --publish=never --linux"
|
|
},
|
|
"build": {
|
|
"productName": "ontime",
|
|
"appId": "no.lightdev.ontime",
|
|
"asar": true,
|
|
"dmg": {
|
|
"artifactName": "ontime-macOS-${arch}.dmg"
|
|
},
|
|
"mac": {
|
|
"notarize": true,
|
|
"hardenedRuntime": true,
|
|
"gatekeeperAssess": false,
|
|
"entitlements": "./entitlements.plist",
|
|
"entitlementsInherit": "./entitlements.plist",
|
|
"target": {
|
|
"target": "dmg",
|
|
"arch": [
|
|
"x64",
|
|
"arm64"
|
|
]
|
|
},
|
|
"category": "public.app-category.productivity",
|
|
"icon": "ontime.icon"
|
|
},
|
|
"win": {
|
|
"target": "nsis"
|
|
},
|
|
"nsis": {
|
|
"artifactName": "ontime-win64.exe",
|
|
"oneClick": false,
|
|
"allowToChangeInstallationDirectory": true,
|
|
"allowElevation": true,
|
|
"createDesktopShortcut": true,
|
|
"createStartMenuShortcut": true,
|
|
"deleteAppDataOnUninstall": true,
|
|
"runAfterFinish": false,
|
|
"installerIcon": "icon.ico",
|
|
"installerSidebar": "ontime-install.bmp",
|
|
"uninstallerSidebar": "ontime-install.bmp"
|
|
},
|
|
"linux": {
|
|
"target": {
|
|
"target": "AppImage",
|
|
"arch": [
|
|
"x64",
|
|
"arm64",
|
|
"armv7l"
|
|
]
|
|
},
|
|
"artifactName": "ontime-linux-${arch}.AppImage"
|
|
},
|
|
"files": [
|
|
"**/*",
|
|
"src/assets/",
|
|
"!**/{yarn.lock,yarn-error.log}",
|
|
"!**/{pnpm-lock.yaml}",
|
|
"!**/{test,tests,__test__,__tests__}",
|
|
"!**/{mock,mocks,__mock__,__mocks__}",
|
|
"!*{.spec.js,*.test.js,*.spec.ts,.test.ts}"
|
|
],
|
|
"directories": {
|
|
"buildResources": "./src/assets/"
|
|
},
|
|
"extraResources": [
|
|
{
|
|
"from": "../client/build",
|
|
"to": "extraResources/client/",
|
|
"filter": [
|
|
"**/*",
|
|
"!**/{yarn.lock,yarn-error.log}",
|
|
"!**/{pnpm-lock.yaml}",
|
|
"!**/{test,tests,__test__,__tests__}",
|
|
"!**/{mock,mocks,__mock__,__mocks__}",
|
|
"!*{.spec.js,*.test.js,*.spec.ts,.test.ts}"
|
|
]
|
|
},
|
|
{
|
|
"from": "../server/dist/",
|
|
"to": "extraResources/server/",
|
|
"filter": [
|
|
"**/*",
|
|
"!**/{yarn.lock,yarn-error.log}",
|
|
"!**/{pnpm-lock.yaml}",
|
|
"!**/{test,tests,__test__,__tests__}",
|
|
"!**/{mock,mocks,__mock__,__mocks__}",
|
|
"!*{.spec.js,*.test.js,*.spec.ts,.test.ts}"
|
|
]
|
|
},
|
|
{
|
|
"from": "../server/src/external/",
|
|
"to": "extraResources/external/",
|
|
"filter": [
|
|
"**/*"
|
|
]
|
|
},
|
|
{
|
|
"from": "../server/src/user/",
|
|
"to": "extraResources/user/",
|
|
"filter": [
|
|
"**/*",
|
|
"*{.ts}"
|
|
]
|
|
},
|
|
{
|
|
"from": "../server/src/html/",
|
|
"to": "extraResources/html/",
|
|
"filter": [
|
|
"**/*"
|
|
]
|
|
}
|
|
]
|
|
}
|
|
}
|