48 lines
1.1 KiB
JSON
48 lines
1.1 KiB
JSON
{
|
|
"name": "@tm/core",
|
|
"version": "1.0.0",
|
|
"description": "Core library for Task Master - TypeScript task management system",
|
|
"type": "module",
|
|
"types": "./dist/index.d.ts",
|
|
"main": "./dist/index.js",
|
|
"exports": {
|
|
".": {
|
|
"types": "./src/index.ts",
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.js"
|
|
}
|
|
},
|
|
"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"
|
|
}
|