{
    "name": "@o.yilmaz/generatorjs",
    "version": "1.0.10",
    "description": "Allows you to create  and manipulate DOM elements seamlessly in a declarative way.",
    "main": "out/cjs/index.js",
    "module": "out/mjs/index.js",
    "exports": {
        ".": {
            "import": "./out/mjs/index.js",
            "require": "./out/cjs/index.js"
        }
    },
    "files": [
        "out",
        "dist/Generator.min.js",
        "README.md",
        "LICENSE.md"
    ],
    "directories": {
        "example": "examples",
        "tests": "tests"
    },
    "scripts": {
        "watch": "rollup -c -w",
        "test": "jest",
        "test:watch": "jest --watch",
        "test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --watch",
        "build:mjs": "tsc -p tsconfig.json && tsc-alias -p tsconfig.json",
        "build:cjs": "tsc -p tsconfig-cjs.json && tsc-alias -p tsconfig-cjs.json",
        "build:dist": "rollup --config",
        "update-types": "./scripts/update-package-types.sh",
        "clean": "rm -fr dist/* out/*",
        "build": "npm-run-all clean build:* update-types",
        "check-types": "tsc",
        "prettier": "prettier --ignore-path .gitignore \"**/*.+(ts|js|json)\"",
        "format": "npm run prettier -- --write",
        "check-format": "npm run prettier -- --list-different",
        "lint": "npx eslint -c .eslintrc --ignore-path .eslintignore --ext .js,.ts,.tsx .",
        "lint-fix": "npm run lint-check -- --fix",
        "validate": "npm-run-all --parallel check-types check-format lint build",
        "prepare": "husky install",
        "lint-staged": "lint-staged"
    },
    "repository": {
        "type": "git",
        "url": "https://github.com/oguz-yilmaz/Generatorjs.git"
    },
    "keywords": [
        "dom",
        "element",
        "creation",
        "create",
        "manipulation",
        "dynamic"
    ],
    "author": "Oguz Yilmaz <oguz.yilmaz@yahoo.com>",
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/oguz-yilmaz/Generatorjs/issues"
    },
    "homepage": "https://github.com/oguz-yilmaz/Generatorjs#readme",
    "devDependencies": {
        "@babel/core": "^7.12.7",
        "@babel/preset-env": "^7.12.7",
        "@babel/preset-typescript": "^7.18.6",
        "@rollup/plugin-babel": "^5.3.1",
        "@rollup/plugin-commonjs": "^16.0.0",
        "@rollup/plugin-json": "^4.1.0",
        "@rollup/plugin-node-resolve": "^10.0.0",
        "@rollup/plugin-typescript": "^9.0.2",
        "@testing-library/dom": "^7.28.1",
        "@testing-library/jest-dom": "^5.11.6",
        "@testing-library/user-event": "^14.4.3",
        "@types/jest": "^29.2.3",
        "@types/jquery": "^3.5.14",
        "@types/testing-library__jest-dom": "^5.14.5",
        "@typescript-eslint/eslint-plugin": "^5.42.0",
        "@typescript-eslint/parser": "^5.42.0",
        "concurrently": "^5.3.0",
        "eslint": "^7.14.0",
        "eslint-config-airbnb-base": "^14.2.1",
        "eslint-config-prettier": "^8.5.0",
        "eslint-import-resolver-typescript": "^3.5.2",
        "eslint-plugin-import": "^2.22.1",
        "husky": "^8.0.0",
        "jest": "^29.3.1",
        "jest-environment-jsdom": "^29.3.1",
        "jquery": "^3.6.2",
        "lint-staged": "^13.1.0",
        "npm-run-all": "^4.1.5",
        "prettier": "^2.7.1",
        "rollup": "^2.33.3",
        "rollup-plugin-eslint": "^7.0.0",
        "rollup-plugin-terser": "^7.0.2",
        "ts-jest": "^29.0.3",
        "tsc-alias": "^1.8.2",
        "typescript": "^4.8.4"
    },
    "dependencies": {
        "@o.yilmaz/taskchain": "^1.0.10",
        "core-js": "^3.7.0"
    },
    "publishConfig": {
        "access": "public"
    }
}
