12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- {
- "name": "@storybook/router",
- "version": "7.6.17",
- "description": "Core Storybook Router",
- "keywords": [
- "storybook"
- ],
- "homepage": "https://github.com/storybookjs/storybook/tree/next/code/lib/router",
- "bugs": {
- "url": "https://github.com/storybookjs/storybook/issues"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/storybookjs/storybook.git",
- "directory": "code/lib/router"
- },
- "funding": {
- "type": "opencollective",
- "url": "https://opencollective.com/storybook"
- },
- "license": "MIT",
- "sideEffects": false,
- "exports": {
- ".": {
- "types": "./dist/index.d.ts",
- "node": "./dist/index.js",
- "require": "./dist/index.js",
- "import": "./dist/index.mjs"
- },
- "./utils": {
- "types": "./dist/utils.d.ts",
- "require": "./dist/utils.js",
- "import": "./dist/utils.mjs"
- },
- "./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/bundle.ts"
- },
- "dependencies": {
- "@storybook/client-logger": "7.6.17",
- "memoizerific": "^1.11.3",
- "qs": "^6.10.0"
- },
- "devDependencies": {
- "@storybook/global": "^5.0.0",
- "dequal": "^2.0.2",
- "lodash": "^4.17.21",
- "react": "^16.8.0",
- "react-dom": "^16.8.0",
- "react-router-dom": "6.0.2",
- "ts-dedent": "^2.0.0",
- "typescript": "~4.9.3"
- },
- "publishConfig": {
- "access": "public"
- },
- "bundler": {
- "platform": "browser",
- "entries": [
- "./src/index.ts",
- "./src/utils.ts"
- ],
- "externals": [
- "react",
- "react-dom",
- "@storybook/addons",
- "@storybook/api",
- "@storybook/channels",
- "@storybook/client-logger",
- "@storybook/components",
- "@storybook/core-events",
- "@storybook/manager-api",
- "@storybook/router",
- "@storybook/theming",
- "@storybook/types"
- ]
- },
- "gitHead": "e6a7fd8a655c69780bc20b9749c2699e44beae17"
- }
|