{
  "name": "el-animate",
  "version": "1.3.0",
  "description": "Easily animate html elements using css and control it with js",
  "homepage": "https://github.com/putnik-projects/el-animate",
  "repository": {
    "type": "git",
    "url": "https://github.com/putnik-projects/el-animate"
  },
  "bugs": "https://github.com/putnik-projects/el-animate/issues",
  "keywords": [
    "css",
    "animation",
    "transition",
    "css-animation",
    "animate",
    "transform",
    "dom"
  ],
  "author": "Nikita Putilin <22.pn.sp@gmail.com> (https://github.com/putnik-projects)",
  "license": "MIT",
  "type": "module",
  "main": "./dist/el-animate.umd.js",
  "module": "./dist/el-animate.es.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "src"
  ],
  "exports": {
    ".": {
      "import": "./dist/el-animate.es.js",
      "require": "./dist/el-animate.umd.js"
    }
  },
  "babel": {
    "presets": [
      "@babel/preset-env"
    ]
  },
  "browserslist": [
    "defaults"
  ],
  "lint-staged": {
    "*.{js,ts}": "eslint --cache",
    "*.ts": "bash -c tsc --noEmit",
    "*": "prettier --write --ignore-unknown"
  },
  "devDependencies": {
    "@babel/preset-env": "^7.21.5",
    "@rollup/plugin-babel": "^6.0.3",
    "@typescript-eslint/eslint-plugin": "^5.59.2",
    "@typescript-eslint/parser": "^5.59.2",
    "eslint": "^8.40.0",
    "eslint-config-airbnb-base": "^15.0.0",
    "eslint-config-airbnb-typescript": "^17.0.0",
    "eslint-config-prettier": "^8.8.0",
    "eslint-plugin-import": "^2.27.5",
    "husky": "^8.0.3",
    "lint-staged": "^13.2.2",
    "prettier": "2.8.8",
    "tsup": "^6.7.0",
    "typescript": "^5.0.4",
    "vite": "^4.3.5"
  },
  "scripts": {
    "dev": "vite",
    "build": "vite build && tsup ./src/index.ts --dts-only",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "type-check": "tsc --noEmit",
    "format": "prettier . --write",
    "preinstall": "npx only-allow pnpm"
  }
}