UNPKG

storybook-addon-stencil

Version:
67 lines 1.55 kB
{ "name": "storybook-addon-stencil", "version": "0.2.3", "description": "A Stencil compiler integration for Storybook.", "type": "module", "keywords": [ "storybook", "storybook-addons", "stencil", "web-components" ], "repository": { "type": "git", "url": "https://github.com/ZanichelliEditore/storybook-addon-stencil" }, "author": "Zanichelli Editore", "license": "MIT", "exports": { ".": { "types": "./dist/index.d.ts", "default": "./dist/index.mjs" }, "./preset": { "types": "./dist/preset.d.ts", "default": "./dist/preset.js" }, "./package.json": "./package.json" }, "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "files": [ "dist/**/*", "README.md", "*.js", "*.d.ts" ], "publishConfig": { "access": "public" }, "storybook": { "displayName": "Stencil", "supportedFrameworks": [ "web-components" ], "icon": "https://raw.githubusercontent.com/ionic-team/stencil/main/stencil-logo.png" }, "dependencies": { "@stencil/core": "^4.18.3", "@storybook/builder-vite": "^8.3.0", "custom-elements-manifest": "^1.0.0" }, "peerDependencies": { "typescript": "^5.4.3" }, "devDependencies": { "@storybook/types": "^8.3.0", "prettier": "^3.2.5", "typescript": "^5.4.3", "vite": "^5.2.11" }, "scripts": { "build": "tsc", "prettier.fix": "prettier --write .", "demo": "tsc && cd demo && pnpm i && pnpm storybook" } }