UNPKG

storybook-addon-rem

Version:

A storybook addon which helps you to test how your REM sized components behave.

86 lines (85 loc) 2.44 kB
{ "name": "storybook-addon-rem", "version": "1.3.0", "description": "A storybook addon which helps you to test how your REM sized components behave.", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "types": "dist/ts/index.d.ts", "files": [ "src", "dist", "README.md", "preset.js" ], "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "clean": "rimraf ./dist", "buildBabel": "concurrently \"npm run buildBabel:cjs\" \"npm run buildBabel:esm\"", "buildBabel:cjs": "babel ./src -d ./dist/cjs --extensions \".js,.jsx,.ts,.tsx\"", "buildBabel:esm": "babel ./src -d ./dist/esm --env-name esm --extensions \".js,.jsx,.ts,.tsx\"", "buildTsc": "tsc --declaration --emitDeclarationOnly --outDir ./dist/ts -p tsconfig.build.json", "prebuild": "npm run clean", "build": "concurrently \"npm run buildBabel\" \"npm run buildTsc\"", "build:watch": "concurrently \"npm run buildBabel:esm -- --watch\" \"npm run buildTsc -- --watch\"" }, "repository": { "type": "git", "url": "git+https://github.com/soelen/storybook-addon-rem.git" }, "keywords": [ "storybook", "storybookjs", "storybook-addon", "addon", "tool", "ui", "user interface", "frontend", "style", "CSS", "elastic", "font-size", "rem" ], "author": { "name": "Uwe Sölen Flaig", "email": "uwe.soelen.flaig@gmail.com" }, "license": "MIT", "bugs": { "url": "https://github.com/soelen/storybook-addon-rem/issues" }, "homepage": "https://github.com/soelen/storybook-addon-rem#readme", "devDependencies": { "@babel/cli": "^7.19.3", "@babel/preset-env": "^7.20.2", "@babel/preset-react": "^7.18.6", "@babel/preset-typescript": "^7.18.6", "concurrently": "^7.6.0", "react": "^18.2.0", "react-dom": "^18.2.0", "rimraf": "^3.0.2", "typescript": "^4.9.4" }, "dependencies": { "@storybook/addons": "^6.5.15", "@storybook/api": "^6.5.15", "@storybook/components": "^6.5.15", "@types/react": "^18.0.27" }, "storybook": { "displayName": "Rem", "icon": "https://raw.githubusercontent.com/soelen/storybook-addon-rem/master/.github/images/icon.gif", "unsupportedFrameworks": [ "react-native" ], "supportedFrameworks": [ "web components", "angular", "preact", "svelte", "react", "vue" ] } }