mirror of
https://github.com/cpvalente/ontime.git
synced 2026-07-26 10:38:55 +00:00
fc7ed6bd20
* refactor: turbo scripts refactor dev and build scripts remove cleanup * fix e2e script * cache playwright * cache pnpm * fix docker env in vite * fixup! refactor: turbo scripts * chore: add comment
30 lines
850 B
JSON
30 lines
850 B
JSON
{
|
|
"name": "@getontime/resolver",
|
|
"version": "4.0.0-beta.5",
|
|
"type": "module",
|
|
"repository": "https://github.com/cpvalente/ontime",
|
|
"types": "./dist/main.d.ts",
|
|
"main": "./dist/main.js",
|
|
"description": "shared typings for ontime",
|
|
"scripts": {
|
|
"lint": "eslint . --quiet",
|
|
"typecheck": "tsc --noEmit",
|
|
"prebuild": "pnpm rimraf ./dist",
|
|
"build": "tsup && pnpm rimraf ./dist/index.js",
|
|
"postbuild": "pnpm rimraf ./dist/index.d.ts"
|
|
},
|
|
"keywords": ["ontime", "resolver", "parser"],
|
|
"author": "",
|
|
"license": "AGPL-3.0-only",
|
|
"devDependencies": {
|
|
"@sprout2000/esbuild-copy-plugin": "^1.1.19",
|
|
"@typescript-eslint/parser": "catalog:",
|
|
"eslint": "catalog:",
|
|
"tsup": "^8.5.0",
|
|
"rimraf": "catalog:",
|
|
"typescript": "catalog:",
|
|
"ontime-types": "workspace:^4.0.0"
|
|
},
|
|
"files": ["dist"]
|
|
}
|