{
  "name": "@ljcl/storybook-addon-cssprops",
  "version": "4.0.0",
  "description": "Interact with css custom properties dynamically in the Storybook UI",
  "keywords": [
    "storybook-addons",
    "style",
    "design",
    "CSS",
    "variables",
    "properties",
    "addon",
    "storybook"
  ],
  "homepage": "https://github.com/ljcl/storybook-addon-cssprops/tree/main/packages/storybook-addon-cssprops",
  "repository": "https://github.com/ljcl/storybook-addon-cssprops.git",
  "author": "Luke Clark <luke@lukeclark.com.au>",
  "license": "MIT",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "types": "dist/esm/index.d.ts",
  "files": [
    "assets/**/*",
    "dist/**/*",
    "README.md",
    "*.js",
    "*.d.ts"
  ],
  "storybook": {
    "displayName": "CSS Custom Properties",
    "icon": "https://user-images.githubusercontent.com/1884292/166685037-789ec758-008f-467c-83bd-776cd5b2eb1f.png",
    "supportedFrameworks": [
      "react",
      "vue",
      "svelte",
      "web-components",
      "angular",
      "ember",
      "html",
      "preact",
      "react-native"
    ]
  },
  "devDependencies": {
    "@storybook/blocks": "^8.0.5",
    "@storybook/components": "^8.0.5",
    "@storybook/manager-api": "^8.0.5",
    "@storybook/preview-api": "^8.0.5",
    "@storybook/theming": "^8.0.5",
    "@storybook/types": "^8.0.5",
    "@types/node": "^14.14.22",
    "@types/react": "^16.8.8",
    "react": "^18.0.0",
    "react-dom": "^18.0.0",
    "rimraf": "^3.0.2",
    "typescript": "^4.1.3"
  },
  "publishConfig": {
    "access": "public",
    "tag": "latest"
  },
  "scripts": {
    "dev": "tsc --watch --preserveWatchOutput",
    "build": "pnpm build:esm && pnpm build:cjs",
    "build:esm": "tsc",
    "lint": "eslint src",
    "build:cjs": "tsc --module commonjs --outDir dist/cjs",
    "clean": "rimraf .turbo && rimraf dist"
  }
}