{
  "name": "create-nitro-lib",
  "version": "0.5.0",
  "description": "CLI tool to generate React Native Nitro Modules templates",
  "type": "module",
  "main": "dist/cli.js",
  "bin": {
    "create-nitro-lib": "./dist/cli.js"
  },
  "scripts": {
    "build": "tsc",
    "dev": "node dist/cli.js",
    "clean": "rm -rf dist test-module",
    "prepublishOnly": "bun run build",
    "test": "bun run build && node dist/cli.js test-module --skip-install && rm -rf test-module",
    "test:local": "bun run build && bun link && create-nitro-lib test-local --skip-install",
    "publish:npm": "npm publish",
    "publish:dry": "npm pack --dry-run",
    "version:patch": "npm version patch",
    "version:minor": "npm version minor",
    "version:major": "npm version major"
  },
  "files": ["dist", "README.md", "LICENSE"],
  "keywords": [
    "react-native",
    "expo",
    "react-native-nitro-modules",
    "template",
    "cli",
    "generator"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/corasan/git@github.com:corasan/create-nitro-lib.git.git"
  },
  "bugs": {
    "url": "https://github.com/corasan/git@github.com:corasan/create-nitro-lib.git/issues"
  },
  "homepage": "https://github.com/corasan/git@github.com:corasan/create-nitro-lib.git#readme",
  "author": "Henry Paulino <me@henrypl.com> (https://github.com/corasan)",
  "license": "MIT",
  "dependencies": {
    "ink": "^4.4.1",
    "react": "^18.2.0",
    "fs-extra": "^11.1.1"
  },
  "devDependencies": {
    "@types/react": "^18.2.0",
    "@types/fs-extra": "^11.0.4",
    "@types/node": "^20.0.0",
    "typescript": "^5.0.0",
    "tsx": "^3.12.0"
  },
  "engines": {
    "node": ">=18.0.0"
  }
}
