{
  "name": "@mdaemon/observable",
  "version": "3.0.2",
  "type": "module",
  "description": "A function for creating an observable object, array, boolean, string, or number.",
  "main": "dist/observable.umd.js",
  "module": "dist/observable.mjs",
  "browser": "dist/observable.umd.js",
  "common": "dist/observable.cjs",
  "typings": "dist/index.d.ts",
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "test": "jest",
    "test:dist": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config jest.config.dist.ts",
    "dev-test": "jest --watchAll",
    "build": "rollup -c",
    "dev": "rollup -c -w",
    "pub": "npm run build && npm run test && npm run test:dist && npm publish"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mdaemon-technologies/observable.git"
  },
  "keywords": [
    "observable",
    "emitter",
    "watch",
    "emitter",
    "observer",
    "watcher"
  ],
  "author": {
    "name": "MDaemon Technologies, Ltd.",
    "email": "jonathan.ehman@mdaemon.com",
    "url": "https://www.mdaemon.com"
  },
  "license": "LGPL-2.1",
  "bugs": {
    "url": "https://github.com/mdaemon-technologies/observable/issues"
  },
  "homepage": "https://github.com/mdaemon-technologies/observable#readme",
  "devDependencies": {
    "@types/jest": "^30.0.0",
    "jest": "^30.4.2",
    "rollup": "^4.60.3",
    "rollup-plugin-esbuild": "^6.2.1",
    "ts-jest": "^29.4.10",
    "ts-node": "^10.9.2",
    "typescript": "^6.0.0"
  },
  "exports": {
    ".": {
      "import": "./dist/observable.mjs",
      "require": "./dist/observable.cjs",
      "browser": "./dist/observable.umd.js",
      "types": "./dist/index.d.ts"
    }
  }
}
