123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- {
- "name": "@storybook/addon-storysource",
- "version": "7.6.17",
- "description": "View a story’s source code to see how it works and paste into your app",
- "keywords": [
- "addon",
- "storybook",
- "code"
- ],
- "homepage": "https://github.com/storybookjs/storybook/tree/next/code/addons/storysource",
- "bugs": {
- "url": "https://github.com/storybookjs/storybook/issues"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/storybookjs/storybook.git",
- "directory": "code/addons/storysource"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- },
- "license": "MIT",
- "exports": {
- ".": {
- "types": "./dist/index.d.ts",
- "node": "./dist/index.js",
- "require": "./dist/index.js",
- "import": "./dist/index.mjs"
- },
- "./preset": "./dist/preset.js",
- "./manager": "./dist/manager.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",
- "!src/**/*"
- ],
- "scripts": {
- "check": "node --loader ../../../scripts/node_modules/esbuild-register/loader.js -r ../../../scripts/node_modules/esbuild-register/register.js ../../../scripts/prepare/check.ts",
- "prep": "node --loader ../../../scripts/node_modules/esbuild-register/loader.js -r ../../../scripts/node_modules/esbuild-register/register.js ../../../scripts/prepare/addon-bundle.ts"
- },
- "dependencies": {
- "@storybook/source-loader": "7.6.17",
- "estraverse": "^5.2.0",
- "tiny-invariant": "^1.3.1"
- },
- "devDependencies": {
- "@storybook/client-logger": "7.6.17",
- "@storybook/components": "7.6.17",
- "@storybook/manager-api": "7.6.17",
- "@storybook/preview-api": "7.6.17",
- "@storybook/router": "7.6.17",
- "@storybook/theming": "7.6.17",
- "@types/react": "^16.14.34",
- "@types/react-syntax-highlighter": "11.0.5",
- "react": "^16.8.0",
- "react-dom": "^16.8.0",
- "react-syntax-highlighter": "^15.5.0",
- "typescript": "~4.9.3"
- },
- "publishConfig": {
- "access": "public"
- },
- "bundler": {
- "exportEntries": [
- "./src/index.ts"
- ],
- "managerEntries": [
- "./src/manager.tsx"
- ],
- "nodeEntries": [
- "./src/preset.ts"
- ]
- },
- "gitHead": "e6a7fd8a655c69780bc20b9749c2699e44beae17",
- "storybook": {
- "displayName": "Storysource",
- "icon": "https://user-images.githubusercontent.com/263385/101991675-48cdf300-3c7c-11eb-9400-58de5ac6daa7.png",
- "unsupportedFrameworks": [
- "react-native"
- ]
- }
- }
|