{
  "name": "@mdaemon/items-model",
  "type": "module",
  "version": "3.0.4",
  "description": "A basic items manipulation model",
  "main": "dist/items-model.umd.js",
  "module": "dist/items-model.mjs",
  "browser": "dist/items-model.umd.js",
  "common": "dist/items-model.cjs",
  "typings": "dist/items-model.d.ts",
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "rollup -c",
    "dev": "rollup -c -w",
    "test": "jest",
    "watch": "jest --watchAll",
    "pub": "npm run build && npm run test && npm publish",
    "test:umd": "node test/umd-test.cjs",
    "test:cjs": "node test/cjs-test.cjs",
    "test:esm": "node test/esm-test.mjs",
    "test:dist": "npm run test:umd && npm run test:cjs && npm run test:esm"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mdaemon-technologies/items-model.git"
  },
  "bugs": {
    "url": "https://github.com/mdaemon-technologies/items-model/issues"
  },
  "keywords": [
    "items",
    "array",
    "objects",
    "boilerplate",
    "Map",
    "items map",
    "abstract model"
  ],
  "author": {
    "name": "MDaemon Technologies, Ltd.",
    "email": "jonathan.ehman@mdaemon.com",
    "url": "https://www.mdaemon.com"
  },
  "license": "LGPL-2.1",
  "homepage": "https://github.com/mdaemon-technologies/items-model#readme",
  "devDependencies": {
    "@rollup/plugin-commonjs": "^28.0.3",
    "@rollup/plugin-node-resolve": "^16.0.1",
    "@rollup/plugin-typescript": "^12.1.2",
    "@swc/core": "^1.15.33",
    "@swc/jest": "^0.2.39",
    "jest": "^30.4.2",
    "jest-environment-jsdom": "^30.4.1",
    "rollup": "^4.40.0",
    "rollup-plugin-esbuild": "^6.2.1",
    "tslib": "^2.8.1",
    "typescript": "^6.0.3"
  },
  "files": [
    "dist"
  ],
  "exports": {
    ".": {
      "types": "./dist/items-model.d.ts",
      "import": "./dist/items-model.mjs",
      "require": "./dist/items-model.cjs",
      "browser": "./dist/items-model.umd.js"
    }
  },
  "dependencies": {
    "@mdaemon/emitter": "^2.1.1"
  }
}
