storybook-addon-deep-controls
Version:
A Storybook addon that extends @storybook/addon-controls and provides an alternative to interacting with object arguments
81 lines • 2.39 kB
JSON
{
"name": "storybook-addon-deep-controls",
"version": "0.9.5",
"description": "A Storybook addon that extends @storybook/addon-controls and provides an alternative to interacting with object arguments",
"repository": {
"type": "git",
"url": "git+https://github.com/eliasm307/storybook-addon-deep-controls.git"
},
"keywords": [
"storybook",
"addon",
"controls"
],
"author": "Elias Mangoro",
"license": "MIT",
"bugs": {
"url": "https://github.com/eliasm307/storybook-addon-deep-controls/issues"
},
"homepage": "https://github.com/eliasm307/storybook-addon-deep-controls#readme",
"files": [
"dist",
"preset.js",
"register.js",
"register.mjs",
"preview.js",
"preview.mjs",
"index.d.ts",
"index.js",
"index.mjs"
],
"main": "index.js",
"module": "index.mjs",
"types": "index.d.ts",
"exportsNotes": [
"- The order of the keys matters and represents the order of preference e.g. if 'import' is first then it is the preferred import method",
"'types' needs to be first",
"",
"- See example at https://github.com/storybookjs/addon-kit/blob/main/package.json"
],
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.mjs",
"require": "./index.js"
},
"./preview": {
"types": "./index.d.ts",
"import": "./preview.mjs",
"require": "./preview.js"
},
"./preview.js": {
"types": "./index.d.ts",
"import": "./preview.mjs",
"require": "./preview.js"
},
"./package.json": "./package.json",
"./register": "./register.js",
"./register.js": "./register.js"
},
"scripts": {
"prepare": "npm run build",
"build": "concurrently --timings --prefix-colors auto --kill-others-on-fail \"tsc -p tsconfig.build.esm.json\" \"tsc -p tsconfig.build.cjs.json\"",
"test": "vitest run",
"test:watch": "vitest",
"check-exports": "attw --pack . --ignore-rules untyped-resolution false-cjs",
"build-pack": "npm run build && npm pack --pack-destination=dist"
},
"peerDependencies": {
"storybook": ">= 7.0.0 < 8.5.0 || >= 9.0.0 < 10.0.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@vitest/coverage-v8": "^3.2.4",
"react": "18.3.1",
"storybook": "9.0.12",
"vitest": "^3.2.4"
},
"installConfig": {
"hoistingLimits": "workspaces"
}
}