75 lines
1.7 KiB
JSON
75 lines
1.7 KiB
JSON
{
|
|
"name": "msw-storybook-addon",
|
|
"version": "2.0.6",
|
|
"description": "Mock API requests in Storybook with Mock Service Worker.",
|
|
"keywords": [
|
|
"storybook-addon",
|
|
"msw",
|
|
"mocking",
|
|
"api",
|
|
"graphql",
|
|
"network",
|
|
"data-state"
|
|
],
|
|
"homepage": "https://msw-sb.vercel.app/",
|
|
"bugs": {
|
|
"url": "https://github.com/mswjs/msw-storybook-addon/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/mswjs/msw-storybook-addon.git",
|
|
"directory": "packages/msw-addon"
|
|
},
|
|
"license": "MIT",
|
|
"author": "Aditya Agarwal (@dev__adi)",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.browser.d.ts",
|
|
"browser": "./dist/index.browser.js",
|
|
"react-native": "./dist/index.react-native.js",
|
|
"node": "./dist/index.node.cjs",
|
|
"default": "./dist/index.browser.js"
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"main": "./dist/index.browser.js",
|
|
"types": "./dist/index.browser.d.ts",
|
|
"files": [
|
|
"dist/"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"dev": "yarn build --watch",
|
|
"release": "auto shipit"
|
|
},
|
|
"dependencies": {
|
|
"is-node-process": "^1.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@auto-it/released": "^11.1.1",
|
|
"auto": "^11.1.1",
|
|
"msw": "^2.0.9",
|
|
"ts-dedent": "^2.2.0",
|
|
"tsup": "^8.0.1",
|
|
"typescript": "^5.2.2"
|
|
},
|
|
"peerDependencies": {
|
|
"msw": "^2.0.0"
|
|
},
|
|
"auto": {
|
|
"prereleaseBranches": [
|
|
"next",
|
|
"prerelease"
|
|
],
|
|
"plugins": [
|
|
"npm",
|
|
"released"
|
|
]
|
|
},
|
|
"storybook": {
|
|
"displayName": "Mock Service Worker",
|
|
"icon": "https://user-images.githubusercontent.com/1671563/144888802-84346d8f-77c9-4377-98c7-4b0364797978.png"
|
|
}
|
|
}
|