{
  "name": "@entro314labs/at3-toolkit",
  "version": "1.0.0-alpha.1",
  "description": "Advanced development toolkit for AT3 Stack projects",
  "keywords": [
    "at3",
    "ait3e",
    "at3-stack",
    "at3t",
    "ai-native",
    "nextjs",
    "react",
    "typescript",
    "tailwind",
    "supabase",
    "edge",
    "serverless",
    "biome",
    "vitest",
    "linting",
    "testing",
    "toolkit",
    "devtools",
    "cli"
  ],
  "homepage": "https://at3-stack.dev",
  "bugs": {
    "url": "https://github.com/entro314-labs/at3-stack-kit/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/entro314-labs/at3-stack-kit.git",
    "directory": "packages/at3-toolkit"
  },
  "license": "MIT",
  "author": "entro314-labs",
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./cli": {
      "import": "./dist/cli.js"
    }
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "at3-toolkit": "./dist/cli.js",
    "at3t": "./dist/cli.js"
  },
  "files": [
    "dist/**/*",
    "configs/**/*",
    "templates/**/*",
    "README.md",
    "CHANGELOG.md"
  ],
  "dependencies": {
    "@clack/prompts": "^0.11.0",
    "boxen": "^8.0.1",
    "chalk": "^5.6.2",
    "cli-table3": "^0.6.5",
    "commander": "^14.0.2",
    "detect-package-manager": "^3.0.2",
    "figures": "^6.1.0",
    "fs-extra": "^11.3.2",
    "glob": "^13.0.0",
    "gradient-string": "^3.0.0",
    "semver": "^7.7.3",
    "toml": "^3.0.0",
    "validate-npm-package-name": "^7.0.0",
    "yaml": "^2.8.1"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.3.8",
    "@changesets/cli": "^2.29.7",
    "@types/fs-extra": "^11.0.4",
    "@types/node": "^24.10.1",
    "@types/semver": "^7.7.1",
    "@vitest/coverage-v8": "^4.0.14",
    "typescript": "^5.9.3",
    "vitest": "^4.0.14"
  },
  "peerDependencies": {
    "typescript": ">=5.9.3"
  },
  "engines": {
    "node": ">=22.x"
  },
  "preferGlobal": true,
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org"
  },
  "scripts": {
    "bench": "vitest bench",
    "build": "tsc && chmod +x dist/cli.js",
    "dev": "tsc --watch",
    "format": "biome format --write .",
    "format:check": "biome check .",
    "lint": "biome check .",
    "lint:fix": "biome check --fix .",
    "check": "biome check src/",
    "check:fix": "biome check --write src/",
    "release": "changeset publish",
    "release:dry-run": "echo 'Dry run release complete'",
    "test": "vitest",
    "test:ci": "vitest run",
    "test:coverage": "vitest run --coverage",
    "test:integration": "vitest run --config vitest.integration.config.ts",
    "test:unit": "vitest run --config vitest.config.ts",
    "test:watch": "vitest watch",
    "typecheck": "tsc --noEmit",
    "version": "changeset version"
  }
}