mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
Change require/import order, so that import has higher prio if both are specified
This commit is contained in:
parent
68809b615f
commit
1145eb3724
@ -29,13 +29,13 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preview": {
|
||||
"types": "./dist/preview.d.ts",
|
||||
"require": "./dist/preview.js",
|
||||
"import": "./dist/preview.mjs"
|
||||
"import": "./dist/preview.mjs",
|
||||
"require": "./dist/preview.js"
|
||||
},
|
||||
"./manager": "./dist/manager.js",
|
||||
"./register": "./dist/manager.js",
|
||||
|
@ -25,18 +25,18 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./decorator": {
|
||||
"types": "./dist/decorator.d.ts",
|
||||
"require": "./dist/decorator.js",
|
||||
"import": "./dist/decorator.mjs"
|
||||
"import": "./dist/decorator.mjs",
|
||||
"require": "./dist/decorator.js"
|
||||
},
|
||||
"./preview": {
|
||||
"types": "./dist/preview.d.ts",
|
||||
"require": "./dist/preview.js",
|
||||
"import": "./dist/preview.mjs"
|
||||
"import": "./dist/preview.mjs",
|
||||
"require": "./dist/preview.js"
|
||||
},
|
||||
"./manager": "./dist/manager.js",
|
||||
"./register.js": "./dist/manager.js",
|
||||
|
@ -29,13 +29,13 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preview": {
|
||||
"types": "./dist/preview.d.ts",
|
||||
"require": "./dist/preview.js",
|
||||
"import": "./dist/preview.mjs"
|
||||
"import": "./dist/preview.mjs",
|
||||
"require": "./dist/preview.js"
|
||||
},
|
||||
"./manager": "./dist/manager.js",
|
||||
"./register": "./dist/manager.js",
|
||||
|
@ -29,8 +29,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./manager": "./dist/manager.js",
|
||||
"./register": "./dist/manager.js",
|
||||
|
@ -26,30 +26,30 @@
|
||||
"license": "MIT",
|
||||
"exports": {
|
||||
".": {
|
||||
"node": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"node": "./dist/index.js",
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preview": {
|
||||
"types": "./dist/preview.d.ts",
|
||||
"require": "./dist/preview.js",
|
||||
"import": "./dist/preview.mjs"
|
||||
"import": "./dist/preview.mjs",
|
||||
"require": "./dist/preview.js"
|
||||
},
|
||||
"./preset": {
|
||||
"types": "./dist/preset.d.ts",
|
||||
"require": "./dist/preset.js",
|
||||
"import": "./dist/preset.js"
|
||||
"import": "./dist/preset.js",
|
||||
"require": "./dist/preset.js"
|
||||
},
|
||||
"./blocks": {
|
||||
"types": "./dist/blocks.d.ts",
|
||||
"require": "./dist/blocks.js",
|
||||
"import": "./dist/blocks.mjs"
|
||||
"import": "./dist/blocks.mjs",
|
||||
"require": "./dist/blocks.js"
|
||||
},
|
||||
"./dist/preview": {
|
||||
"types": "./dist/preview.d.ts",
|
||||
"require": "./dist/preview.js",
|
||||
"import": "./dist/preview.mjs"
|
||||
"import": "./dist/preview.mjs",
|
||||
"require": "./dist/preview.js"
|
||||
},
|
||||
"./dist/preset": {
|
||||
"types": "./dist/preset.d.ts",
|
||||
@ -57,13 +57,13 @@
|
||||
},
|
||||
"./dist/shims/mdx-react-shim": {
|
||||
"types": "./dist/shims/mdx-react-shim.d.ts",
|
||||
"require": "./dist/shims/mdx-react-shim.js",
|
||||
"import": "./dist/shims/mdx-react-shim.mjs"
|
||||
"import": "./dist/shims/mdx-react-shim.mjs",
|
||||
"require": "./dist/shims/mdx-react-shim.js"
|
||||
},
|
||||
"./mdx-react-shim": {
|
||||
"types": "./dist/shims/mdx-react-shim.d.ts",
|
||||
"require": "./dist/shims/mdx-react-shim.js",
|
||||
"import": "./dist/shims/mdx-react-shim.mjs"
|
||||
"import": "./dist/shims/mdx-react-shim.mjs",
|
||||
"require": "./dist/shims/mdx-react-shim.js"
|
||||
},
|
||||
"./mdx-loader": "./dist/mdx-loader.js",
|
||||
"./svelte/HOC.svelte": "./svelte/HOC.svelte",
|
||||
|
@ -23,10 +23,10 @@
|
||||
"license": "MIT",
|
||||
"exports": {
|
||||
".": {
|
||||
"node": "./dist/index.js",
|
||||
"types": "./dist/index.d.ts",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"node": "./dist/index.js",
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./actions/preview": {
|
||||
"types": "./dist/actions/preview.d.ts",
|
||||
|
@ -27,13 +27,13 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preview": {
|
||||
"types": "./dist/preview.d.ts",
|
||||
"require": "./dist/preview.js",
|
||||
"import": "./dist/preview.mjs"
|
||||
"import": "./dist/preview.mjs",
|
||||
"require": "./dist/preview.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
|
@ -25,13 +25,13 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preview": {
|
||||
"types": "./dist/preview.d.ts",
|
||||
"require": "./dist/preview.js",
|
||||
"import": "./dist/preview.mjs"
|
||||
"import": "./dist/preview.mjs",
|
||||
"require": "./dist/preview.js"
|
||||
},
|
||||
"./manager": "./dist/manager.js",
|
||||
"./preset": "./dist/preset.js",
|
||||
|
@ -31,8 +31,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./manager": "./dist/manager.js",
|
||||
"./register": "./dist/manager.js",
|
||||
|
@ -25,18 +25,18 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./react": {
|
||||
"types": "./dist/react/index.d.ts",
|
||||
"require": "./dist/react/index.js",
|
||||
"import": "./dist/react/index.mjs"
|
||||
"import": "./dist/react/index.mjs",
|
||||
"require": "./dist/react/index.js"
|
||||
},
|
||||
"./preview": {
|
||||
"types": "./dist/preview.d.ts",
|
||||
"require": "./dist/preview.js",
|
||||
"import": "./dist/preview.mjs"
|
||||
"import": "./dist/preview.mjs",
|
||||
"require": "./dist/preview.js"
|
||||
},
|
||||
"./manager": "./dist/manager.js",
|
||||
"./register": "./dist/manager.js",
|
||||
|
@ -28,13 +28,13 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preview": {
|
||||
"types": "./dist/preview.d.ts",
|
||||
"require": "./dist/preview.js",
|
||||
"import": "./dist/preview.mjs"
|
||||
"import": "./dist/preview.mjs",
|
||||
"require": "./dist/preview.js"
|
||||
},
|
||||
"./manager": "./dist/manager.js",
|
||||
"./register": "./dist/manager.js",
|
||||
|
@ -24,8 +24,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./manager": "./dist/manager.js",
|
||||
"./preset": "./dist/preset.js",
|
||||
|
@ -31,13 +31,13 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preview": {
|
||||
"types": "./dist/preview.d.ts",
|
||||
"require": "./dist/preview.js",
|
||||
"import": "./dist/preview.mjs"
|
||||
"import": "./dist/preview.mjs",
|
||||
"require": "./dist/preview.js"
|
||||
},
|
||||
"./manager": "./dist/manager.js",
|
||||
"./register": "./dist/manager.js",
|
||||
|
@ -25,8 +25,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preset": "./dist/preset.js",
|
||||
"./manager": "./dist/manager.js",
|
||||
|
@ -30,13 +30,13 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preview": {
|
||||
"types": "./dist/preview.d.ts",
|
||||
"require": "./dist/preview.js",
|
||||
"import": "./dist/preview.mjs"
|
||||
"import": "./dist/preview.mjs",
|
||||
"require": "./dist/preview.js"
|
||||
},
|
||||
"./manager": "./dist/manager.js",
|
||||
"./package.json": "./package.json",
|
||||
|
@ -29,8 +29,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./manager": "./dist/manager.js",
|
||||
"./register": "./dist/manager.js",
|
||||
|
@ -26,13 +26,13 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preview": {
|
||||
"types": "./dist/preview.d.ts",
|
||||
"require": "./dist/preview.js",
|
||||
"import": "./dist/preview.mjs"
|
||||
"import": "./dist/preview.mjs",
|
||||
"require": "./dist/preview.js"
|
||||
},
|
||||
"./manager": "./dist/manager.js",
|
||||
"./package.json": "./package.json"
|
||||
|
@ -23,8 +23,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
|
@ -21,8 +21,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./input/iframe.html": "./input/iframe.html",
|
||||
"./package.json": "./package.json"
|
||||
|
@ -23,8 +23,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./presets/custom-webpack-preset": {
|
||||
"types": "./dist/presets/custom-webpack-preset.d.ts",
|
||||
|
@ -23,8 +23,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preset": {
|
||||
"types": "./dist/preset.d.ts",
|
||||
|
@ -23,8 +23,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preset": {
|
||||
"types": "./dist/preset.d.ts",
|
||||
|
@ -24,13 +24,13 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./dist/image-context": {
|
||||
"types": "./dist/image-context.d.ts",
|
||||
"require": "./dist/image-context.js",
|
||||
"import": "./dist/image-context.mjs"
|
||||
"import": "./dist/image-context.mjs",
|
||||
"require": "./dist/image-context.js"
|
||||
},
|
||||
"./preset": {
|
||||
"types": "./dist/preset.d.ts",
|
||||
@ -38,49 +38,49 @@
|
||||
},
|
||||
"./font/webpack/loader/storybook-nextjs-font-loader": {
|
||||
"types": "./dist/font/webpack/loader/storybook-nextjs-font-loader.d.ts",
|
||||
"require": "./dist/font/webpack/loader/storybook-nextjs-font-loader.js",
|
||||
"import": "./dist/font/webpack/loader/storybook-nextjs-font-loader.mjs"
|
||||
"import": "./dist/font/webpack/loader/storybook-nextjs-font-loader.mjs",
|
||||
"require": "./dist/font/webpack/loader/storybook-nextjs-font-loader.js"
|
||||
},
|
||||
"./dist/preview.mjs": "./dist/preview.mjs",
|
||||
"./next-image-loader-stub.js": {
|
||||
"types": "./dist/next-image-loader-stub.d.ts",
|
||||
"require": "./dist/next-image-loader-stub.js",
|
||||
"import": "./dist/next-image-loader-stub.mjs"
|
||||
"import": "./dist/next-image-loader-stub.mjs",
|
||||
"require": "./dist/next-image-loader-stub.js"
|
||||
},
|
||||
"./dist/compatibility/segment.compat": {
|
||||
"types": "./dist/compatibility/segment.compat.d.ts",
|
||||
"require": "./dist/compatibility/segment.compat.js",
|
||||
"import": "./dist/compatibility/segment.compat.mjs"
|
||||
"import": "./dist/compatibility/segment.compat.mjs",
|
||||
"require": "./dist/compatibility/segment.compat.js"
|
||||
},
|
||||
"./dist/compatibility/redirect-status-code.compat": {
|
||||
"types": "./dist/compatibility/redirect-status-code.compat.d.ts",
|
||||
"require": "./dist/compatibility/redirect-status-code.compat.js",
|
||||
"import": "./dist/compatibility/redirect-status-code.compat.mjs"
|
||||
"import": "./dist/compatibility/redirect-status-code.compat.mjs",
|
||||
"require": "./dist/compatibility/redirect-status-code.compat.js"
|
||||
},
|
||||
"./export-mocks": {
|
||||
"types": "./dist/export-mocks/index.d.ts",
|
||||
"require": "./dist/export-mocks/index.js",
|
||||
"import": "./dist/export-mocks/index.mjs"
|
||||
"import": "./dist/export-mocks/index.mjs",
|
||||
"require": "./dist/export-mocks/index.js"
|
||||
},
|
||||
"./cache.mock": {
|
||||
"types": "./dist/export-mocks/cache/index.d.ts",
|
||||
"require": "./dist/export-mocks/cache/index.js",
|
||||
"import": "./dist/export-mocks/cache/index.mjs"
|
||||
"import": "./dist/export-mocks/cache/index.mjs",
|
||||
"require": "./dist/export-mocks/cache/index.js"
|
||||
},
|
||||
"./headers.mock": {
|
||||
"types": "./dist/export-mocks/headers/index.d.ts",
|
||||
"require": "./dist/export-mocks/headers/index.js",
|
||||
"import": "./dist/export-mocks/headers/index.mjs"
|
||||
"import": "./dist/export-mocks/headers/index.mjs",
|
||||
"require": "./dist/export-mocks/headers/index.js"
|
||||
},
|
||||
"./navigation.mock": {
|
||||
"types": "./dist/export-mocks/navigation/index.d.ts",
|
||||
"require": "./dist/export-mocks/navigation/index.js",
|
||||
"import": "./dist/export-mocks/navigation/index.mjs"
|
||||
"import": "./dist/export-mocks/navigation/index.mjs",
|
||||
"require": "./dist/export-mocks/navigation/index.js"
|
||||
},
|
||||
"./router.mock": {
|
||||
"types": "./dist/export-mocks/router/index.d.ts",
|
||||
"require": "./dist/export-mocks/router/index.js",
|
||||
"import": "./dist/export-mocks/router/index.mjs"
|
||||
"import": "./dist/export-mocks/router/index.mjs",
|
||||
"require": "./dist/export-mocks/router/index.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
|
@ -22,8 +22,8 @@
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preset": {
|
||||
"types": "./dist/preset.d.ts",
|
||||
|
@ -23,8 +23,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preset": {
|
||||
"types": "./dist/preset.d.ts",
|
||||
|
@ -23,8 +23,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preset": {
|
||||
"types": "./dist/preset.d.ts",
|
||||
|
@ -23,8 +23,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preset": {
|
||||
"types": "./dist/preset.d.ts",
|
||||
|
@ -23,8 +23,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preset": {
|
||||
"types": "./dist/preset.d.ts",
|
||||
|
@ -23,8 +23,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preset": {
|
||||
"types": "./dist/preset.d.ts",
|
||||
|
@ -23,8 +23,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preset": {
|
||||
"types": "./dist/preset.d.ts",
|
||||
|
@ -26,8 +26,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./dist/preview.mjs": {
|
||||
"import": "./dist/preview.mjs"
|
||||
|
@ -23,8 +23,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preset": {
|
||||
"types": "./dist/preset.d.ts",
|
||||
|
@ -23,8 +23,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preset": {
|
||||
"types": "./dist/preset.d.ts",
|
||||
|
@ -23,8 +23,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preset": {
|
||||
"types": "./dist/preset.d.ts",
|
||||
|
@ -26,8 +26,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preset": {
|
||||
"types": "./dist/preset.d.ts",
|
||||
|
@ -24,8 +24,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
|
@ -28,8 +28,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./package.json": "./package.json",
|
||||
"./bin/index": "./bin/index.js"
|
||||
|
@ -24,8 +24,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
|
@ -23,8 +23,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
|
@ -24,26 +24,26 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preview-errors": {
|
||||
"types": "./dist/errors/preview-errors.d.ts",
|
||||
"node": "./dist/errors/preview-errors.js",
|
||||
"require": "./dist/errors/preview-errors.js",
|
||||
"import": "./dist/errors/preview-errors.mjs"
|
||||
"import": "./dist/errors/preview-errors.mjs",
|
||||
"require": "./dist/errors/preview-errors.js"
|
||||
},
|
||||
"./manager-errors": {
|
||||
"types": "./dist/errors/manager-errors.d.ts",
|
||||
"node": "./dist/errors/manager-errors.js",
|
||||
"require": "./dist/errors/manager-errors.js",
|
||||
"import": "./dist/errors/manager-errors.mjs"
|
||||
"import": "./dist/errors/manager-errors.mjs",
|
||||
"require": "./dist/errors/manager-errors.js"
|
||||
},
|
||||
"./server-errors": {
|
||||
"types": "./dist/errors/server-errors.d.ts",
|
||||
"node": "./dist/errors/server-errors.js",
|
||||
"require": "./dist/errors/server-errors.js",
|
||||
"import": "./dist/errors/server-errors.mjs"
|
||||
"import": "./dist/errors/server-errors.mjs",
|
||||
"require": "./dist/errors/server-errors.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
|
@ -23,8 +23,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./dist/presets/common-preset": {
|
||||
"types": "./dist/presets/common-preset.d.ts",
|
||||
|
@ -23,8 +23,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
|
@ -24,14 +24,14 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./dist/webpack-loader": {
|
||||
"types": "./dist/webpack-loader.d.ts",
|
||||
"node": "./dist/webpack-loader.js",
|
||||
"require": "./dist/webpack-loader.js",
|
||||
"import": "./dist/webpack-loader.mjs"
|
||||
"import": "./dist/webpack-loader.mjs",
|
||||
"require": "./dist/webpack-loader.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
|
@ -24,8 +24,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
|
@ -24,8 +24,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
|
@ -23,8 +23,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
|
@ -24,14 +24,14 @@
|
||||
".": {
|
||||
"types": "./dist/react-18.d.ts",
|
||||
"node": "./dist/react-18.js",
|
||||
"require": "./dist/react-18.js",
|
||||
"import": "./dist/react-18.mjs"
|
||||
"import": "./dist/react-18.mjs",
|
||||
"require": "./dist/react-18.js"
|
||||
},
|
||||
"./dist/react-16": {
|
||||
"types": "./dist/react-16.d.ts",
|
||||
"node": "./dist/react-16.js",
|
||||
"require": "./dist/react-16.js",
|
||||
"import": "./dist/react-16.mjs"
|
||||
"import": "./dist/react-16.mjs",
|
||||
"require": "./dist/react-16.js"
|
||||
},
|
||||
"./dist/preset": {
|
||||
"types": "./dist/preset.d.ts",
|
||||
|
@ -24,13 +24,13 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./utils": {
|
||||
"types": "./dist/utils.d.ts",
|
||||
"require": "./dist/utils.js",
|
||||
"import": "./dist/utils.mjs"
|
||||
"import": "./dist/utils.mjs",
|
||||
"require": "./dist/utils.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
|
@ -25,8 +25,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
|
@ -24,8 +24,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
|
@ -24,8 +24,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
|
@ -24,13 +24,13 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./create": {
|
||||
"types": "./dist/create.d.ts",
|
||||
"require": "./dist/create.js",
|
||||
"import": "./dist/create.mjs"
|
||||
"import": "./dist/create.mjs",
|
||||
"require": "./dist/create.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
|
@ -24,8 +24,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
|
@ -23,14 +23,14 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preset": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
|
@ -23,14 +23,14 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preset": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
|
@ -23,14 +23,14 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preset": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
|
@ -23,29 +23,29 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preset": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./dist/framework-preset-cra": {
|
||||
"types": "./dist/framework-preset-cra.d.ts",
|
||||
"require": "./dist/framework-preset-cra.js",
|
||||
"import": "./dist/framework-preset-cra.mjs"
|
||||
"import": "./dist/framework-preset-cra.mjs",
|
||||
"require": "./dist/framework-preset-cra.js"
|
||||
},
|
||||
"./dist/framework-preset-react-docs": {
|
||||
"types": "./dist/framework-preset-react-docs.d.ts",
|
||||
"require": "./dist/framework-preset-react-docs.js",
|
||||
"import": "./dist/framework-preset-react-docs.mjs"
|
||||
"import": "./dist/framework-preset-react-docs.mjs",
|
||||
"require": "./dist/framework-preset-react-docs.js"
|
||||
},
|
||||
"./dist/loaders/react-docgen-loader": {
|
||||
"types": "./dist/loaders/react-docgen-loader.d.ts",
|
||||
"require": "./dist/loaders/react-docgen-loader.js",
|
||||
"import": "./dist/loaders/react-docgen-loader.mjs"
|
||||
"import": "./dist/loaders/react-docgen-loader.mjs",
|
||||
"require": "./dist/loaders/react-docgen-loader.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
|
@ -23,19 +23,19 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preset": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./dist/loader": {
|
||||
"types": "./dist/loader.d.ts",
|
||||
"require": "./dist/loader.js",
|
||||
"import": "./dist/loader.mjs"
|
||||
"import": "./dist/loader.mjs",
|
||||
"require": "./dist/loader.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
|
@ -23,29 +23,29 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preset": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./dist/framework-preset-svelte-docs": {
|
||||
"types": "./dist/framework-preset-svelte-docs.d.ts",
|
||||
"require": "./dist/framework-preset-svelte-docs.js",
|
||||
"import": "./dist/framework-preset-svelte-docs.mjs"
|
||||
"import": "./dist/framework-preset-svelte-docs.mjs",
|
||||
"require": "./dist/framework-preset-svelte-docs.js"
|
||||
},
|
||||
"./dist/framework-preset-svelte": {
|
||||
"types": "./dist/framework-preset-svelte.d.ts",
|
||||
"require": "./dist/framework-preset-svelte.js",
|
||||
"import": "./dist/framework-preset-svelte.mjs"
|
||||
"import": "./dist/framework-preset-svelte.mjs",
|
||||
"require": "./dist/framework-preset-svelte.js"
|
||||
},
|
||||
"./dist/svelte-docgen-loader": {
|
||||
"types": "./dist/svelte-docgen-loader.d.ts",
|
||||
"require": "./dist/svelte-docgen-loader.js",
|
||||
"import": "./dist/svelte-docgen-loader.mjs"
|
||||
"import": "./dist/svelte-docgen-loader.mjs",
|
||||
"require": "./dist/svelte-docgen-loader.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
|
@ -23,24 +23,24 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preset": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./dist/framework-preset-vue3-docs": {
|
||||
"types": "./dist/framework-preset-vue3-docs.d.ts",
|
||||
"require": "./dist/framework-preset-vue3-docs.js",
|
||||
"import": "./dist/framework-preset-vue3-docs.mjs"
|
||||
"import": "./dist/framework-preset-vue3-docs.mjs",
|
||||
"require": "./dist/framework-preset-vue3-docs.js"
|
||||
},
|
||||
"./dist/framework-preset-vue3": {
|
||||
"types": "./dist/framework-preset-vue3.d.ts",
|
||||
"require": "./dist/framework-preset-vue3.js",
|
||||
"import": "./dist/framework-preset-vue3.mjs"
|
||||
"import": "./dist/framework-preset-vue3.mjs",
|
||||
"require": "./dist/framework-preset-vue3.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
|
@ -23,8 +23,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preset": "./preset.js",
|
||||
"./dist/entry-preview.mjs": "./dist/entry-preview.mjs",
|
||||
|
@ -23,8 +23,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preset": "./preset.js",
|
||||
"./dist/entry-preview.mjs": "./dist/entry-preview.mjs",
|
||||
|
@ -23,14 +23,14 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./experimental-playwright": {
|
||||
"types": "./dist/playwright.d.ts",
|
||||
"node": "./dist/playwright.js",
|
||||
"require": "./dist/playwright.js",
|
||||
"import": "./dist/playwright.mjs"
|
||||
"import": "./dist/playwright.mjs",
|
||||
"require": "./dist/playwright.js"
|
||||
},
|
||||
"./preset": "./preset.js",
|
||||
"./dist/entry-preview.mjs": "./dist/entry-preview.mjs",
|
||||
|
@ -23,8 +23,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preset": "./preset.js",
|
||||
"./dist/entry-preview.mjs": "./dist/entry-preview.mjs",
|
||||
|
@ -22,15 +22,15 @@
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js",
|
||||
"node": "./dist/index.js"
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./experimental-playwright": {
|
||||
"types": "./dist/playwright.d.ts",
|
||||
"node": "./dist/playwright.js",
|
||||
"import": "./dist/playwright.mjs",
|
||||
"require": "./dist/playwright.js",
|
||||
"node": "./dist/playwright.js"
|
||||
"require": "./dist/playwright.js"
|
||||
},
|
||||
"./preset": "./preset.js",
|
||||
"./dist/entry-preview.mjs": "./dist/entry-preview.mjs",
|
||||
|
@ -23,14 +23,14 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./experimental-playwright": {
|
||||
"types": "./dist/playwright.d.ts",
|
||||
"node": "./dist/playwright.js",
|
||||
"require": "./dist/playwright.js",
|
||||
"import": "./dist/playwright.mjs"
|
||||
"import": "./dist/playwright.mjs",
|
||||
"require": "./dist/playwright.js"
|
||||
},
|
||||
"./preset": "./preset.js",
|
||||
"./dist/entry-preview.mjs": "./dist/entry-preview.mjs",
|
||||
|
@ -26,8 +26,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./preset": "./preset.js",
|
||||
"./dist/entry-preview.mjs": "./dist/entry-preview.mjs",
|
||||
|
@ -24,8 +24,8 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
|
@ -24,13 +24,13 @@
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"node": "./dist/index.js",
|
||||
"require": "./dist/index.js",
|
||||
"import": "./dist/index.mjs"
|
||||
"import": "./dist/index.mjs",
|
||||
"require": "./dist/index.js"
|
||||
},
|
||||
"./html": {
|
||||
"types": "./dist/html.d.ts",
|
||||
"require": "./dist/html.js",
|
||||
"import": "./dist/html.mjs"
|
||||
"import": "./dist/html.mjs",
|
||||
"require": "./dist/html.js"
|
||||
},
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user