{
    "name": "iterable-observer",
    "version": "1.1.0",
    "license": "LGPL-3.0",
    "author": "shiy2008@gmail.com",
    "description": "Observable Proposal implement based on Async Generator (ES 2018) & TypeScript",
    "keywords": [
        "observer",
        "observable",
        "proposal",
        "typescript",
        "async",
        "generator",
        "iterator"
    ],
    "homepage": "https://web-cell.dev/iterable-observer/",
    "repository": {
        "type": "git",
        "url": "git+https://github.com/EasyWebApp/iterable-observer.git"
    },
    "bugs": {
        "url": "https://github.com/EasyWebApp/iterable-observer/issues"
    },
    "source": "source/index.ts",
    "types": "dist/index.d.ts",
    "module": "dist/index.esm.js",
    "main": "dist/index.js",
    "dependencies": {
        "@swc/helpers": "^0.5.12"
    },
    "devDependencies": {
        "@parcel/packager-ts": "~2.12.0",
        "@parcel/transformer-typescript-types": "~2.12.0",
        "@types/jest": "^29.5.12",
        "@types/node": "^18.19.44",
        "husky": "^9.1.4",
        "jest": "^29.7.0",
        "lint-staged": "^15.2.9",
        "open-cli": "^8.0.0",
        "parcel": "~2.12.0",
        "prettier": "^3.3.3",
        "ts-jest": "^29.2.4",
        "typedoc": "^0.26.5",
        "typedoc-plugin-mdn-links": "^3.2.8",
        "typescript": "~5.5.4"
    },
    "prettier": {
        "singleQuote": true,
        "trailingComma": "none",
        "arrowParens": "avoid",
        "tabWidth": 4
    },
    "lint-staged": {
        "*.{md,json,ts}": "prettier --write"
    },
    "jest": {
        "preset": "ts-jest",
        "testTimeout": 8000
    },
    "browserslist": "> 0.5%, last 2 versions, not dead, IE 11",
    "targets": {
        "main": {
            "optimize": true
        }
    },
    "scripts": {
        "prepare": "husky",
        "test": "lint-staged  &&  jest --no-cache",
        "pack-docs": "typedoc source/",
        "build": "rm -rf dist/ docs/  &&  parcel build  &&  npm run pack-docs",
        "start": "npm run pack-docs  &&  open-cli docs/index.html",
        "prepublishOnly": "npm test  &&  npm run build"
    }
}
