{
  "name": "onion",
  "version": "1.0.0",
  "description": "Toggle elements with CSS transitions and animations the easy way.",
  "homepage": "https://github.com/phparkle/onion#readme",
  "bugs": "https://github.com/phparkle/onion/issues",
  "type": "module",
  "source": "src/onion.ts",
  "exports": {
    "require": "./dist/onion.cjs",
    "default": "./dist/onion.modern.js"
  },
  "main": "./dist/onion.cjs",
  "types": "./dist/onion.d.ts",
  "module": "./dist/onion.module.js",
  "unpkg": "./dist/onion.umd.js",
  "files": [
    "src",
    "dist"
  ],
  "author": "Parkle Lee <phparkle@gmail.com>",
  "license": "MIT",
  "devDependencies": {
    "microbundle": "^0.15.1",
    "nodemon": "^2.0.19",
    "rimraf": "^3.0.2"
  },
  "scripts": {
    "build": "rimraf dist && microbundle",
    "start": "nodemon --exec \"pnpm build\" --watch src -e js,ts,json"
  }
}