{
    "name": "cssfun",
    "version": "0.1.0",
    "description": "Near-zero runtime CSS-in-JS library",
    "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 none --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 --files src/*.js > docs/api.md"
    },
    "repository": "github:8tentaculos/cssfun",
    "homepage": "https://cssfun.js.org",
    "bugs": "https://github.com/8tentaculos/cssfun/issues",
    "author": "Alberto Masuelli <alberto.masuelli@gmail.com> (https://github.com/8tentaculos)",
    "license": "MIT",
    "keywords": [
        "style",
        "sheet",
        "stylesheet",
        "styles",
        "css",
        "css-in-js",
        "components"
    ],
    "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"
    },
    "dependencies": {
        "csstype": "3.2.3"
    }
}
