{
  "name": "default-composer",
  "version": "0.6.0",
  "description": "A JavaScript library that allows you to set default values for nested objects",
  "main": "dist/index.js",
  "umd:main": "dist/index.umd.js",
  "module": "dist/index.m.js",
  "exports": {
    "require": "./dist/index.js",
    "types": "./dist/index.d.ts",
    "default": "./dist/index.modern.mjs"
  },
  "files": [
    "dist"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/aralroca/default-composer.git"
  },
  "keywords": [
    "default",
    "composer",
    "merge",
    "mix",
    "nested",
    "defaults",
    "json",
    "tree",
    "javascript",
    "typescript"
  ],
  "author": "Aral Roca <aral-rg@hotmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/aralroca/default-composer/issues"
  },
  "homepage": "https://github.com/aralroca/default-composer#readme",
  "scripts": {
    "test": "bun test src/index.test.ts",
    "test:watch": "bun --watch test src/index.test.ts",
    "build": "microbundle",
    "dev": "microbundle watch",
    "format": "npx prettier --write .",
    "prepublish": "bun run build"
  },
  "devDependencies": {
    "@babel/preset-typescript": "7.21.5",
    "microbundle": "0.15.1"
  }
}