FABRIC/package.json
jeda 69f3c1d5ab feat: initialize FABRIC TypeScript project
Implements bd-3a4 and bd-2pa.1 (project setup):
- Initialize npm project with TypeScript configuration
- Add package.json with build scripts and dependencies
- Create src/ structure with types and CLI entry point
- Add CLI commands: tui, web, tail (placeholders)
- Configure tsconfig.json for NodeNext modules

This addresses worker starvation (bd-29a) by demonstrating
that direct implementation is a viable alternative when
workers cannot claim beads due to dependency resolution issues.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2026-03-03 04:41:00 +00:00

40 lines
850 B
JSON

{
"name": "@needle/fabric",
"version": "0.1.0",
"description": "Flow Analysis & Bead Reporting Interface Console - Live display for NEEDLE worker activity",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"fabric": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"tui": "node dist/cli.js tui",
"web": "node dist/cli.js web",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit"
},
"keywords": [
"needle",
"worker",
"monitoring",
"tui",
"dashboard"
],
"author": "",
"license": "ISC",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"typescript": "^5.3.0"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^12.0.0"
}
}