mirror of
https://github.com/eyaltoledano/claude-task-master.git
synced 2026-01-29 22:02:04 +00:00
32 lines
729 B
JSON
32 lines
729 B
JSON
{
|
|
"name": "@tm/bridge",
|
|
"private": true,
|
|
"description": "TEMPORARY: Bridge layer for legacy code migration. DELETE when legacy scripts are removed.",
|
|
"type": "module",
|
|
"types": "./src/index.ts",
|
|
"main": "./dist/index.js",
|
|
"exports": {
|
|
".": "./src/index.ts"
|
|
},
|
|
"scripts": {
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"lint": "biome check --write",
|
|
"lint:check": "biome check",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@tm/core": "*",
|
|
"chalk": "5.6.2",
|
|
"boxen": "^8.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.10.5",
|
|
"typescript": "^5.9.2",
|
|
"vitest": "^3.2.4"
|
|
},
|
|
"files": ["src", "README.md"],
|
|
"keywords": ["temporary", "bridge", "migration"],
|
|
"author": "Task Master AI"
|
|
}
|