{
  "name": "@arrow-js/core",
  "version": "1.0.6",
  "description": "Reactivity without the framework.",
  "author": "Justin Schroeder <justin@wearebraid.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/standardagents/arrow-js",
    "directory": "packages/core"
  },
  "homepage": "https://github.com/standardagents/arrow-js#readme",
  "bugs": {
    "url": "https://github.com/standardagents/arrow-js/issues"
  },
  "main": "dist/index.min.mjs",
  "module": "dist/index.min.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs"
    },
    "./internal": {
      "types": "./dist/internal.d.ts",
      "import": "./dist/internal.mjs"
    },
    "./package.json": "./package.json"
  },
  "type": "module",
  "engines": {
    "node": ">=20.19.0 || >=22.12.0"
  },
  "size-limit": [
    {
      "path": "dist/index.min.mjs",
      "limit": "4.7 KB",
      "brotli": true
    }
  ],
  "scripts": {
    "build:runtime": "node build/pack.mjs && pnpm minify",
    "build": "node build/pack.mjs && pnpm minify && pnpm size",
    "size": "node build/size.mjs",
    "minify": "node build/terser.js"
  }
}