- Add isolate: true to vitest configs for safe parallel test execution - Simplify engine test script from 7 sequential runs to single parallel run - Fix TypeScript type errors in Column, Board, WorktreeGroup, and App components - Fix board-mobile test to match current TaskCard tap behavior - Relax App deep-link test to handle React Strict Mode behavior
40 lines
873 B
JSON
40 lines
873 B
JSON
{
|
|
"name": "@fusion/engine",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./src/index.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"typecheck": "tsc --noEmit",
|
|
"test": "vitest run",
|
|
"test:executor": "vitest run src/executor.test.ts",
|
|
"test:watch": "vitest src/executor.test.ts --watch"
|
|
},
|
|
"dependencies": {
|
|
"@fusion/core": "workspace:*",
|
|
"@mariozechner/pi-ai": "^0.62.0",
|
|
"@mariozechner/pi-coding-agent": "^0.62.0",
|
|
"@sinclair/typebox": "^0.34.48"
|
|
},
|
|
"devDependencies": {
|
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
"@types/node": "^25.5.0",
|
|
"@vitest/coverage-v8": "^3.1.0",
|
|
"typescript": "^5.7.0",
|
|
"vitest": "^3.1.0"
|
|
},
|
|
"private": true
|
|
}
|