UNPKG

@ljcl/storybook-addon-cssprops

Version:
69 lines 1.77 kB
{ "name": "@ljcl/storybook-addon-cssprops", "version": "5.0.1", "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/addon-docs": "^9.0.18", "@types/node": "^22.16.5", "@types/react": "^19.1.8", "react": "^19.1.0", "react-dom": "^19.1.0", "rimraf": "^6.0.1", "storybook": "^9.0.18", "typescript": "^5.8.3" }, "peerDependencies": { "storybook": "^9.0.0" }, "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" } }