{
  "name": "observable-slim",
  "description": "Observable Slim is a singleton that utilizes ES6 Proxies to observe changes made to an object and any nested children of that object. It is intended to assist with state management and one-way data binding.",
  "version": "0.2.2",
  "engines": { "node": ">=18" },
  "main": "dist/observable-slim.cjs",
  "module": "dist/observable-slim.mjs",
  "types": "dist/observable-slim.d.ts",
  "exports": {
    ".": {
      "types": "./dist/observable-slim.d.ts",
      "require": "./dist/observable-slim.cjs",
      "import": "./dist/observable-slim.mjs",
      "default": "./dist/observable-slim.mjs"
    }
  },
  "unpkg": "dist/observable-slim.umd.min.js",
  "jsdelivr": "dist/observable-slim.umd.min.js",
  "sideEffects": false,
  "files": ["dist", "LICENSE", "README.md"],
  "scripts": {
    "test": "nyc --reporter=html --reporter=text mocha \"test/test.js\"",
    "test:types": "tsc -p tsconfig.types.json",
    "test:rt:cjs": "node test/cjs.entry.test.cjs && node test/cjs.direct.test.cjs",
    "test:rt:esm": "node test/esm.entry.test.mjs && node test/esm.direct.test.mjs",
    "test:rt:umd": "node test/umd.node.test.cjs && node test/umd.global.test.cjs",
    "test:artifacts": "npm run build && npm run test:types && npm run test:rt:cjs && npm run test:rt:esm && npm run test:rt:umd",
    "test:all": "npm run test && npm run test:types && npm run test:artifacts",
    "lint": "eslint \"**/*.js\"",
    "lint:fix": "eslint \"**/*.js\" --fix",
    "coverage": "nyc report --reporter=text-lcov | coveralls",
    "build:js": "rollup -c",
    "build:types": "tsc -p tsconfig.json",
    "build": "npm run build:js && npm run build:types",
    "prepublishOnly": "npm run build",
    "type": "npx -p typescript tsc",
    "bench": "node bench/index.js --expose-gc"
  },
  "devDependencies": {
    "@babel/core": "^7.28.5",
    "@babel/eslint-parser": "^7.17.0",
    "@babel/preset-env": "^7.28.5",
    "@rollup/plugin-babel": "^6.1.0",
    "@rollup/plugin-commonjs": "^28.0.9",
    "@rollup/plugin-node-resolve": "^16.0.3",
    "@rollup/plugin-terser": "^0.4.4",
    "chai": "^4.3.6",
    "coveralls": "^3.1.1",
    "eslint": "^8.12.0",
    "mocha": "^9.2.2",
    "nyc": "^15.1.0",
    "rollup": "^4.52.5",
    "typescript": "^5.9.3"
  },
  
  "babel": {
    "presets": [
      "@babel/preset-env"
    ]
  },
  "nyc": {
    "exclude": [
      "test"
    ]
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/ElliotNB/observable-slim.git"
  },
  "license": "MIT",
  "author": "ElliotNB",
  "homepage": "https://github.com/ElliotNB/observable-slim",
  "bugs": {
    "url": "https://github.com/ElliotNB/observable-slim/issues"
  }
}
