{
  "name": "@jsx6/signal",
  "version": "1.8.18",
  "type": "module",
  "sideEffects": false,
  "description": "signal implementation for vanilla JS or JSX",
  "main": "./index.js",
  "types": "dist/index.d.ts",
  "unpkg": "cjs/index.js",
  "module": "./index.js",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./cjs/index.js",
      "default": "./index.js",
      "import": "./index.js"
    }
  },
  "files": [
    "index.js",
    "dist",
    "src",
    "esm",
    "cjs"
  ],
  "scripts": {
    "build": "esbuild index.js --jsx-factory=h --jsx-fragment=null --outdir=esm --bundle --sourcemap --minify --loader:.js=jsx --format=esm",
    "build-cjs": "esbuild index.js --jsx-factory=h --jsx-fragment=null --outdir=cjs --bundle --sourcemap --minify --loader:.js=jsx --format=cjs",
    "test": "bun test"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hrgdavor/jsx6.git"
  },
  "keywords": [
    "DOM",
    "JSX",
    "JSXRuntime",
    "Performance",
    "HTML"
  ],
  "author": "Davor hrg",
  "license": "MIT",
  "licenses": [
    {
      "type": "MIT",
      "url": "https://github.com/hrgdavor/jsx6/blob/master/LICENSE.md"
    }
  ],
  "bugs": {
    "url": "https://hrgdavor/jsx6/issues"
  },
  "homepage": "https://github.com/hrgdavor/jsx6/blob/master/lib/signal/README.md",
  "dependencies": {},
  "devDependencies": {
    "esbuild": "^0.17.18",
    "typescript": "^5.0.4",
    "bun-types": "~1.0.24",
    "@types/node": "latest",
    "@happy-dom/global-registrator": "~14.7.1"
  },
  "publishConfig": {
    "access": "public"
  }
}