{
  "name": "linecraft",
  "version": "0.5.6",
  "description": "High-performance terminal UI library for Node.js",
  "type": "module",
  "main": "./lib/index.js",
  "types": "./lib/index.d.ts",
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "import": "./lib/index.js"
    },
    "./components": {
      "types": "./lib/components/index.d.ts",
      "import": "./lib/components/index.js"
    }
  },
  "files": [
    "lib/**/*"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/matthew-dean/linecraft.git"
  },
  "license": "MIT",
  "scripts": {
    "build:ts": "tsc -p tsconfig.build.json",
    "build": "pnpm build:ts",
    "dev": "pnpm build:ts --watch",
    "typecheck": "tsc --noEmit -p tsconfig.typecheck.json",
    "lint": "oxlint src/",
    "lint:fix": "oxlint src/ --fix",
    "test": "vitest",
    "test:ts": "vitest",
    "example": "node scripts/run-example.js",
    "record": "vhs",
    "record:all": "node scripts/record-all.js",
    "prepublishOnly": "pnpm lint && pnpm typecheck && pnpm test"
  },
  "keywords": [
    "terminal",
    "tui",
    "progress",
    "spinner",
    "ansi"
  ],
  "devDependencies": {
    "@types/node": "^20.0.0",
    "oxlint": "~1.38.0",
    "tsx": "^4.7.0",
    "typescript": "^5.3.0",
    "vitest": "^1.0.0"
  },
  "engines": {
    "node": ">=18.0.0"
  }
}
