{
    "name": "pdquickui",
    "version": "0.6.1",
    "description": "A web frontend framework that supports conditional and loop rendering, data binding, monitoring data changes, and automatic rendering. Previously known as QuickUI.",
    "main": "dist/QuickUI.js",
    "module": "dist/QuickUI.esm.js",
    "types": "src/interface.ts",
    "scripts": {
        "minify": "npx terser src/*.js -c -m -o dist/QuickUI.js --config-file terser.config.json --name-cache terser.cache.json && npx terser src/*.js -c -m -o dist/QuickUI.esm.js --config-file terser.config.json --name-cache terser.cache.json && echo 'export const QUI = window.QUI;' >> dist/QuickUI.esm.js",
        "minify-w": "chokidar 'src/QuickUI.js' -c 'npm run minify'",
        "sass": "sass src/sass:dist/ -w --style compressed --no-source-map",
        "sass-index": "sass static/sass/:static/css/ -w --style compressed --no-source-map"
    },
    "publishConfig": {
        "access": "public"
    },
    "files": [
        "dist",
        "LICENSE",
        "README.md"
    ],
    "repository": {
        "type": "git",
        "url": "git+https://github.com/pardnchiu/QuickUI.git"
    },
    "keywords": [
        "javascript-library",
        "front-end-framework",
        "quickui",
        "UI-framework",
        "data-binding",
        "virtual-DOM",
        "loop-rendering",
        "conditional-rendering"
    ],
    "author": {
        "name": "邱敬幃 Pardn Chiu",
        "email": "dev@pardn.io",
        "url": "https://github.com/pardnchiu"
    },
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/pardnchiu/QuickUI/issues",
        "email": "dev@pardn.io"
    },
    "homepage": "https://github.com/pardnchiu/QuickUI#readme",
    "devDependencies": {
        "chokidar-cli": "3.0.0",
        "terser": "5.31.3",
        "sass": "1.62.0"
    }
}