{
  "name": "component-registry",
  "version": "3.0.0-beta.3",
  "description": "Javascript component registry inspired by the awesome ZTK component registry (Python). Build nice reusable components with interfaces, adapters and utilities. Supports composition through a Javascript friendly implementation of multiple inheritance",
  "author": {
    "name": "Sebastian Ware",
    "email": "sebastian@urbantalk.se",
    "url": "https://github.com/jhsware"
  },
  "license": "MIT",
  "homepage": "https://github.com/jhsware/component-registry",
  "bugs": {
    "url": "https://github.com/jhsware/component-registry/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jhsware/component-registry.git"
  },
  "source": "src/index.ts",
  "main": "dist/index.js",
  "browser": "dist/index.cjs.js",
  "module": "dist/index.module.js",
  "types": "dist/types.d.ts",
  "sideEffects": false,
  "browserslist": "> 0.5%, not dead",
  "engines": {
    "node": ">=16"
  },
  "targets": {
    "browser": {
      "optimize": true
    }
  },
  "dependencies": {
    "@swc/helpers": "^0.4.14",
    "uuid": "^9.0.0"
  },
  "devDependencies": {
    "@parcel/packager-ts": "^2.8.1",
    "@parcel/transformer-typescript-types": "^2.8.1",
    "@types/node": "^18.11.9",
    "jest-environment-jsdom": "^29.1.2",
    "parcel": "^2.8.0",
    "ts-jest": "^29.0.3",
    "typescript": "^4.9.4"
  },
  "scripts": {
    "build": "npm run build:clean && NODE_ENV=production parcel build",
    "test": "NODE_ENV=production npm run build && NODE_ENV=test jest",
    "test-debug": "NODE_ENV=test jest --inspect-brk --no-timeouts",
    "prepublishOnly": "npm run build",
    "preversion": "npm run test",
    "postversion": "git push && git push --tags",
    "build-dev": "rm -rf ./dist && NODE_ENV=development parcel build --no-optimize",
    "build:clean": "rm -rf dist/"
  }
}
