{
  "name": "@gvray/domkit",
  "version": "1.1.1",
  "description": "DOM manipulation utilities: events, class toggling, bounds, scroll, fullscreen, download, clipboard, and more.",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "module": "esm/index.js",
  "exports": {
    "import": "./esm/index.js",
    "require": "./lib/index.js",
    "types": "./lib/index.d.ts"
  },
  "files": [
    "esm",
    "lib",
    "README.md"
  ],
  "keywords": [
    "dom",
    "domkit",
    "jsdom",
    "util",
    "dom-util",
    "toolkit",
    "tool"
  ],
  "author": {
    "name": "GavinRay",
    "email": "gavinraydev@gmail.com"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/gvray/toolkit/issues"
  },
  "homepage": "https://github.com/gvray/toolkit#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/gvray/toolkit.git"
  },
  "dependencies": {
    "@gvray/eskit": "1.3.1"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "pnpm run clean && run-p build:*",
    "build:esm": "tsc -p tsconfig.json --target ES5 --module ESNext --outDir esm",
    "build:cjs": "tsc -p tsconfig.json --target ES5 --module commonjs --outDir lib",
    "clean": "rimraf lib esm",
    "tsc": "tsc --noEmit",
    "test": "jest",
    "test:coverage": "jest --coverage",
    "dev": "tsc -p tsconfig.json --target ES5 --module ESNext --outDir esm --watch"
  }
}