{
    "name": "rasti",
    "version": "4.1.2",
    "description": "Modern MVC for building user interfaces",
    "type": "module",
    "main": "lib/index.cjs",
    "module": "es/index.js",
    "types": "types/index.d.ts",
    "exports": {
        ".": {
            "types": "./types/index.d.ts",
            "import": "./es/index.js",
            "require": "./lib/index.cjs",
            "default": "./es/index.js"
        },
        "./*": {
            "types": "./types/*.d.ts",
            "import": "./es/*.js",
            "require": "./lib/*.cjs"
        },
        "./*.js": {
            "types": "./types/*.d.ts",
            "import": "./es/*.js",
            "require": "./lib/*.cjs"
        }
    },
    "files": [
        "dist",
        "es",
        "lib",
        "src",
        "types"
    ],
    "directories": {
        "example": "example",
        "test": "test",
        "doc": "docs"
    },
    "scripts": {
        "prepare": "npm run clean && npm run test && npm run build",
        "test": "mocha --require jsdom-global/register --reporter nyan test/*.js",
        "test:types": "tsd",
        "posttest": "npm run lint && npm run test:types",
        "lint": "eslint src test",
        "build": "rollup -c",
        "clean": "node -e \"const fs=require('fs');['lib','dist','es'].forEach(d=>fs.rmSync(d,{recursive:true,force:true}))\"",
        "version": "node scripts/bump-cdn-links.js && node scripts/release-changelog.js",
        "docs:api": "jsdoc2md --module-index-format grouped --helper jsdoc2md/helper.cjs --partial jsdoc2md/header.hbs --partial jsdoc2md/sig-link.hbs --partial jsdoc2md/sig-link-html.hbs --partial jsdoc2md/sig-link-parent.hbs --partial jsdoc2md/link.hbs --files 'src/**/*.js' > docs/api.md"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/8tentaculos/rasti.git"
    },
    "homepage": "https://rasti.js.org",
    "bugs": {
        "url": "https://github.com/8tentaculos/rasti/issues"
    },
    "keywords": [
        "mvc",
        "model",
        "view",
        "component",
        "emitter",
        "ui",
        "user interface",
        "backbone"
    ],
    "author": "Alberto Masuelli <alberto.masuelli@gmail.com> (https://github.com/8tentaculos)",
    "license": "MIT",
    "devDependencies": {
        "@eslint/js": "10.0.1",
        "@rollup/plugin-replace": "6.0.3",
        "@rollup/plugin-terser": "1.0.0",
        "chai": "6.2.2",
        "eslint": "10.4.1",
        "glob": "13.0.6",
        "globals": "17.6.0",
        "jsdoc-to-markdown": "9.1.3",
        "jsdom": "29.1.1",
        "jsdom-global": "3.0.2",
        "mocha": "11.7.6",
        "rollup": "4.61.0",
        "tsd": "0.33.0"
    }
}
