{
    "name": "@codewithkyle/notifyjs",
    "version": "5.0.0",
    "description": "A simple JavaScript library for creating toast, snackbars, and notifications",
    "type": "module",
    "files": [
        "dist/*"
    ],
    "types": "dist/types.d.ts",
    "exports": {
        "./snackbar.js": "./dist/snackbar.js",
        "./notifications.js": "./dist/notifications.js",
        "./toaster.js": "./dist/toaster.js",
        "./sonner.js": "./dist/sonner.js"
    },
    "scripts": {
        "cleanup": "node ./build/cleanup.js",
        "build": "tsc && esbuild ./src/snackbar.ts ./src/notifications.ts ./src/toaster.ts ./src/sonner.ts --format=esm --minify --bundle --outdir=dist",
        "prerelease": "npm run cleanup && npm run build && cp ./src/types.d.ts ./dist/types.d.ts",
        "test": "npm run build && cp -r ./dist ./test/ && serve ./test",
        "deploy": "npm run build && cp -r ./dist ./test/ && node ./build/deploy.js"
    },
    "keywords": [
        "snackbar",
        "notification",
        "toaster",
        "toast",
        "sonner",
        "web-components",
        "lightweight"
    ],
    "author": "Kyle Andrews",
    "license": "MIT",
    "devDependencies": {
        "esbuild": "^0.17.14",
        "gh-pages": "^5.0.0",
        "serve": "^14.2.0",
        "typescript": "^4.2.3"
    }
}
