{
  "name": "f-box-core",
  "version": "0.2.6",
  "description": "Put your data in a box, and suddenly it's easier to handle, transform, and use however you need.",
  "type": "module",
  "files": [
    "dist/types",
    "dist/index.*"
  ],
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/types/main.d.ts",
  "exports": {
    ".": {
      "types": "./dist/types/main.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    }
  },
  "scripts": {
    "dev": "vite",
    "build": "tsc && vite build",
    "lint": "tsc --noEmit",
    "test": "vitest",
    "coverage": "vitest run --coverage",
    "version:patch": "npm version patch",
    "version:minor": "npm version minor",
    "version:major": "npm version major",
    "publish:public": "npm publish --access public",
    "prepare": "npm run build"
  },
  "keywords": [
    "typescript",
    "functional-programming",
    "functor",
    "applicative",
    "monad",
    "maybe",
    "either",
    "task",
    "async",
    "box",
    "reactive",
    "reactive-programming",
    "state-management",
    "library"
  ],
  "author": "Kentaro Morishita",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/KentaroMorishita/f-box-core"
  },
  "devDependencies": {
    "@types/node": "^22.9.1",
    "@vitest/coverage-v8": "^2.1.5",
    "typescript": "~5.6.3",
    "vite": "^5.4.9",
    "vite-plugin-dts": "^4.3.0",
    "vitest": "^2.1.5"
  }
}
