{
    "name": "fernotify",
    "version": "1.2.12",
    "description": "Sistema moderno de notificaciones con animaciones fluidas y soporte completo de Dark Mode",
    "main": "dist/notification-system.js",
    "module": "dist/notification-system.esm.js",
    "types": "types/index.d.ts",
    "exports": {
        ".": {
            "types": "./types/index.d.ts",
            "import": "./dist/notification-system.esm.js",
            "require": "./dist/notification-system.js"
        }
    },
    "files": [
        "dist/",
        "types/",
        "LICENSE",
        "README.md",
        "NOTIFICATION_SYSTEM_GUIDE.md"
    ],
    "keywords": [
        "notifications",
        "notificaciones",
        "toast",
        "anime",
        "dark-mode",
        "alerts",
        "ui"
    ],
    "author": "Fernando Caballero <info@ferchudev.com.py>",
    "license": "MIT",
    "repository": {
        "type": "git",
        "url": "https://github.com/Fernandocabal/fernotify.git"
    },
    "bugs": {
        "url": "https://github.com/Fernandocabal/fernotify/issues"
    },
    "homepage": "https://github.com/Fernandocabal/fernotify#readme",
    "engines": {
        "node": ">=12.0.0"
    },
    "scripts": {
        "ts:build": "tsc -p tsconfig.json && node -e \"require('fs').copyFileSync('build/notification-system.js','notification-system.js')\"",
        "build": "npm run ts:build && node build.js",
        "build:watch": "node -e \"require('fs').watch('notification-system.js', () => require('child_process').exec('node build.js'))\"",
        "prepublishOnly": "npm run build",
        "publish-npm": "npm publish --access public"
    },
    "devDependencies": {
        "terser": "^5.46.0",
        "typescript": "^5.4.0"
    }
}