- @mosaic/types: full type definitions extracted from queue, bootstrap, context packages - @mosaic/queue: type imports now sourced from @mosaic/types via workspace:* - Task, TaskStatus, TaskPriority, TaskLane, CreateTaskInput, etc. centralised - Runtime constants (TASK_STATUSES etc.) remain in queue/src/task.ts
24 lines
451 B
JSON
24 lines
451 B
JSON
{
|
|
"name": "@mosaic/types",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"files": ["dist"],
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.json",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "echo 'ok'",
|
|
"test": "echo 'ok'"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5"
|
|
}
|
|
}
|