mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-04 15:08:01 +00:00
657cc22b44
* feat: parse cue * refactor: get delay from backend * feat: add cue to UI * refactor: remove deprecated delay logic * refactor: extract studio clock specific logic * refactor: extract utilities * refactor: fix issue with missing key * style: prevent cue overflow * style: prevent whitespace wrap * feat: add support for cues in integrations
31 lines
786 B
JSON
31 lines
786 B
JSON
{
|
|
"name": "ontime-utils",
|
|
"type": "module",
|
|
"exports": "./index.ts",
|
|
"private": true,
|
|
"description": "shared logic for ontime",
|
|
"scripts": {
|
|
"lint": "eslint .",
|
|
"test": "vitest",
|
|
"test:pipeline": "vitest run",
|
|
"cleanup": "rm -rf .turbo && rm -rf node_modules"
|
|
},
|
|
"dependencies": {
|
|
"luxon": "^3.3.0",
|
|
"nanoid": "^4.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/luxon": "^3.2.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.48.1",
|
|
"@typescript-eslint/parser": "^5.48.1",
|
|
"eslint": "^8.31.0",
|
|
"eslint-config-prettier": "^8.6.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"eslint-plugin-simple-import-sort": "^8.0.0",
|
|
"ontime-types": "workspace:*",
|
|
"prettier": "^2.8.3",
|
|
"typescript": "^4.9.4",
|
|
"vitest": "^0.30.1"
|
|
}
|
|
}
|