UNPKG

storybook-addon-css-properties

Version:

Edit CSS properties defined in your component to see how stories react

105 lines (104 loc) 2.6 kB
{ "name": "storybook-addon-css-properties", "version": "0.5.1", "description": "Edit CSS properties defined in your component to see how stories react", "keywords": [ "storybook-addon", "storybook-addons", "css", "properties", "custom", "variables" ], "repository": { "type": "git", "url": "https://github.com/jackdomleo7/storybook-addon-css-properties" }, "type": "module", "license": "MIT", "author": "Jack Domleo", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "require": "./dist/index.cjs" }, "./preview": { "types": "./dist/index.d.ts", "import": "./dist/preview.js", "require": "./dist/preview.cjs" }, "./manager": "./dist/manager.js", "./package.json": "./package.json" }, "files": [ "dist/**/*", "README.md", "*.js", "*.d.ts" ], "scripts": { "build": "tsup", "build:watch": "npm run build -- --watch", "test": "echo \"Error: no test specified\" && exit 1", "start": "run-p build:watch \"storybook --quiet\"", "storybook": "storybook dev -p 6006", "build-storybook": "storybook build", "prepublishOnly": "pnpm build && zx scripts/prepublish-checks.js", "prepack": "pnpm build" }, "devDependencies": { "@storybook/addon-docs": "^9.1.1", "@storybook/react-vite": "^9.1.1", "@types/node": "^20.19.9", "@types/react": "^18.3.23", "@types/react-dom": "^18.3.7", "@vitejs/plugin-react": "^4.7.0", "boxen": "^7.1.1", "npm-run-all2": "^6.2.6", "prompts": "^2.4.2", "react": "^18.3.1", "react-dom": "^18.3.1", "storybook": "^9.1.1", "ts-dedent": "^2.2.0", "tsup": "^8.5.0", "typescript": "^5.9.2", "vite": "^5.4.19", "zx": "^8.7.2" }, "peerDependencies": { "storybook": "^9.x" }, "engines": { "node": ">=20" }, "publishConfig": { "access": "public" }, "bundler": { "exportEntries": [ "src/index.ts" ], "managerEntries": [ "src/manager.tsx" ], "previewEntries": [ "src/preview.ts" ] }, "storybook": { "displayName": "CSS Properties Controls", "supportedFrameworks": [ "react", "vue", "angular", "web-components", "ember", "html", "svelte", "preact", "react-native" ], "icon": "https://user-images.githubusercontent.com/321738/63501763-88dbf600-c4cc-11e9-96cd-94adadc2fd72.png" } }