{
  "name": "@bitcoindevke/rendify",
  "version": "1.0.2",
  "description": "Developer template for Quick Wized TS projects.",
  "homepage": "https://github.com/briankiplagat/rendify#readme",
  "license": "ISC",
  "keywords": [],
  "author": {
    "name": "Brian Kiplagat",
    "url": "https://github.com/briankiplagat"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/briankiplagat/rendify.git"
  },
  "bugs": {
    "url": "https://github.com/briankiplagat/rendify/issues"
  },
  "type": "module",
  "main": "src/index.ts",
  "module": "src/index.ts",
  "files": [
    "dist"
  ],
  "devDependencies": {
    "@changesets/changelog-git": "^0.2.0",
    "@changesets/cli": "^2.27.12",
    "@eslint/js": "^9.19.0",
    "@finsweet/eslint-config": "^3.0.3",
    "@finsweet/tsconfig": "^1.4.2",
    "@playwright/test": "^1.50.1",
    "cross-env": "^7.0.3",
    "esbuild": "^0.24.2",
    "eslint": "^9.19.0",
    "eslint-config-prettier": "^10.0.1",
    "eslint-plugin-prettier": "^5.2.3",
    "eslint-plugin-simple-import-sort": "^12.1.1",
    "prettier": "^3.4.2",
    "typescript": "^5.7.3",
    "typescript-eslint": "^8.23.0"
  },
  "dependencies": {
    "@finsweet/ts-utils": "^0.40.0"
  },
  "engines": {
    "pnpm": ">=10"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "dev": "cross-env NODE_ENV=development node ./bin/build.js",
    "build": "cross-env NODE_ENV=production node ./bin/build.js",
    "lint": "eslint ./src && prettier --check ./src",
    "lint:fix": "eslint ./src --fix",
    "check": "tsc --noEmit",
    "format": "prettier --write ./src",
    "test": "playwright test",
    "test:ui": "playwright test --ui",
    "release": "changeset publish",
    "update": "pnpm update -i -L -r",
    "version:staging": "changeset version",
    "release:staging": "changeset publish --tag staging"
  }
}