- Migrated from Jest to Vitest for faster test execution (~4.2s vs ~4.6-5s) - Replaced ESLint and Prettier with Biome for unified, faster linting/formatting - Implemented BaseProvider with Template Method pattern following clean code principles - Created TaskEntity with business logic encapsulation - Added TaskMasterCore facade as main entry point - Implemented complete end-to-end listTasks functionality - All 50 tests passing with improved performance 🤖 Generated with Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
79 lines
2.0 KiB
JSON
79 lines
2.0 KiB
JSON
{
|
|
"name": "@tm/core",
|
|
"version": "1.0.0",
|
|
"description": "Core library for Task Master - TypeScript task management system",
|
|
"type": "module",
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs"
|
|
},
|
|
"./types": {
|
|
"types": "./dist/types/index.d.ts",
|
|
"import": "./dist/types/index.js",
|
|
"require": "./dist/types/index.cjs"
|
|
},
|
|
"./providers": {
|
|
"types": "./dist/providers/index.d.ts",
|
|
"import": "./dist/providers/index.js",
|
|
"require": "./dist/providers/index.cjs"
|
|
},
|
|
"./storage": {
|
|
"types": "./dist/storage/index.d.ts",
|
|
"import": "./dist/storage/index.js",
|
|
"require": "./dist/storage/index.cjs"
|
|
},
|
|
"./parser": {
|
|
"types": "./dist/parser/index.d.ts",
|
|
"import": "./dist/parser/index.js",
|
|
"require": "./dist/parser/index.cjs"
|
|
},
|
|
"./utils": {
|
|
"types": "./dist/utils/index.d.ts",
|
|
"import": "./dist/utils/index.js",
|
|
"require": "./dist/utils/index.cjs"
|
|
},
|
|
"./errors": {
|
|
"types": "./dist/errors/index.d.ts",
|
|
"import": "./dist/errors/index.js",
|
|
"require": "./dist/errors/index.cjs"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"dev": "tsup --watch",
|
|
"test": "vitest run",
|
|
"test:watch": "vitest",
|
|
"test:coverage": "vitest run --coverage",
|
|
"lint": "biome check --write",
|
|
"lint:check": "biome check",
|
|
"lint:fix": "biome check --fix --unsafe",
|
|
"format": "biome format --write",
|
|
"format:check": "biome format",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"zod": "^3.22.4"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^1.9.4",
|
|
"@types/node": "^20.11.30",
|
|
"@vitest/coverage-v8": "^2.0.5",
|
|
"ts-node": "^10.9.2",
|
|
"tsup": "^8.0.2",
|
|
"typescript": "^5.4.3",
|
|
"vitest": "^2.0.5"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"files": ["dist", "README.md", "CHANGELOG.md"],
|
|
"keywords": ["task-management", "typescript", "ai", "prd", "parser"],
|
|
"author": "Task Master AI",
|
|
"license": "MIT"
|
|
}
|