{
  "name": "@farm.js/create-app",
  "version": "0.1.0-beta.102",
  "description": "Create a new FARMJS application",
  "keywords": [
    "@farm.js/create-app",
    "create-app",
    "react",
    "template",
    "vite"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/farming-labs/farm.js",
    "directory": "packages/create-farm-app"
  },
  "bin": {
    "create-farm-app": "./bin/create-farm-app.js"
  },
  "files": [
    "dist",
    "bin",
    "templates"
  ],
  "main": "./dist/index.js",
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "commander": "^11.1.0",
    "picocolors": "^1.0.0",
    "prompts": "^2.4.2"
  },
  "devDependencies": {
    "@types/node": "^20.10.5",
    "@types/prompts": "^2.4.9",
    "tsdown": "^0.15.7",
    "typescript": "^5.3.3"
  },
  "engines": {
    "node": ">=22.13.0"
  },
  "scripts": {
    "build": "tsdown",
    "dev": "tsdown --watch",
    "lint": "biome lint .",
    "lint:fix": "biome lint --write .",
    "format": "biome format --write .",
    "type-check": "tsc --noEmit",
    "test": "tsdown && node --test test/*.test.mjs",
    "clean": "rm -rf dist"
  }
}