{
  "name": "feature-state",
  "version": "0.0.66",
  "private": false,
  "description": "Straightforward, typesafe, and feature-based state management library for ReactJs",
  "keywords": [],
  "homepage": "https://builder.group/?utm_source=package-json",
  "bugs": {
    "url": "https://github.com/builder-group/community/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/builder-group/community.git"
  },
  "license": "MIT",
  "author": "@bennobuilder",
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "source": "./src/index.ts",
  "types": "./dist/types/index.d.ts",
  "files": [
    "dist",
    "README.md"
  ],
  "dependencies": {
    "@blgc/types": "0.0.22",
    "@blgc/utils": "0.0.62"
  },
  "devDependencies": {
    "rollup-presets": "0.0.27",
    "@blgc/config": "0.0.41"
  },
  "size-limit": [
    {
      "path": "dist/esm/index.js"
    }
  ],
  "scripts": {
    "build": "shx rm -rf dist && rollup -c rollup.config.js",
    "build:prod": "export NODE_ENV=production && pnpm build",
    "clean": "shx rm -rf dist && shx rm -rf .turbo && shx rm -rf node_modules",
    "install:clean": "pnpm run clean && pnpm install",
    "lint": "eslint . --fix",
    "publish:patch": "pnpm build:prod && pnpm version patch && pnpm publish --no-git-checks --access=public",
    "size": "size-limit --why",
    "start:dev": "tsc -w",
    "test": "vitest run",
    "update:latest": "pnpm update --latest"
  }
}