{
    "name": "@designbasekorea/theme",
    "version": "0.2.8",
    "description": "Designbase 테마 시스템 - CSS 변수, 테마 프리셋을 제공 (빌드 시 tokens.css 병합)",
    "main": "dist/index.js",
    "module": "dist/index.esm.js",
    "types": "dist/index.d.ts",
    "style": "dist/css/theme.css",
    "exports": {
        ".": {
            "types": "./dist/index.d.ts",
            "import": "./dist/index.esm.js",
            "require": "./dist/index.js",
            "default": "./dist/index.esm.js"
        },
        "./dist/css/theme.css": "./dist/css/theme.css"
    },
    "files": [
        "dist"
    ],
    "scripts": {
        "build": "npm run build:css && node scripts/merge-tokens-into-theme.js && rollup -c",
        "build:css": "sass scss/index.scss dist/css/theme.css --style=compressed",
        "dev": "npm run build:css -- --watch",
        "clean": "rimraf dist",
        "lint": "eslint src --ext .ts,.tsx",
        "test": "jest",
        "storybook": "echo 'Theme package does not have storybook'"
    },
    "dependencies": {},
    "devDependencies": {
        "@designbasekorea/tokens": "^0.2.5",
        "@rollup/plugin-commonjs": "^25.0.4",
        "@rollup/plugin-node-resolve": "^15.2.1",
        "@rollup/plugin-typescript": "^11.1.3",
        "rimraf": "^5.0.1",
        "rollup": "^3.29.2",
        "sass": "^1.68.0",
        "typescript": "^5.2.2"
    },
    "publishConfig": {
        "access": "public"
    },
    "repository": {
        "type": "git",
        "url": "https://github.com/designbasekorea/Designbase-Library.git",
        "directory": "packages/theme"
    }
}