storybook-addon-cookie
Advanced tools
Comparing version 4.0.0-alpha.0 to 4.0.0
104
package.json
{ | ||
"name": "storybook-addon-cookie", | ||
"version": "4.0.0-alpha.0", | ||
"version": "4.0.0", | ||
"description": "Storybook addon for setting document.cookie", | ||
"author": "hwookim <gusdn9754@gmail.com>", | ||
"main": "dist/index.js", | ||
"typings": "dist/index.d.ts", | ||
"license": "MIT", | ||
"author": "hwookim <hwookim.dev@gmail.com>", | ||
"keywords": [ | ||
@@ -17,26 +14,89 @@ "storybook-addon", | ||
"type": "git", | ||
"url": "git+https://github.com/hwookim/storybook-addon-cookie.git", | ||
"directory": "packages/addon" | ||
"url": "https://github.com/storybookjs/storybook-addon-cookie" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/hwookim/storybook-addon-cookie/issues" | ||
"type": "module", | ||
"license": "MIT", | ||
"exports": { | ||
".": { | ||
"types": "./dist/index.d.ts", | ||
"import": "./dist/index.js", | ||
"require": "./dist/index.cjs" | ||
}, | ||
"./preview": { | ||
"types": "./dist/index.d.ts", | ||
"import": "./dist/preview.js", | ||
"require": "./dist/preview.cjs" | ||
}, | ||
"./manager": "./dist/manager.js", | ||
"./package.json": "./package.json" | ||
}, | ||
"files": [ | ||
"dist/**/*", | ||
"README.md", | ||
"*.js", | ||
"*.d.ts" | ||
], | ||
"scripts": { | ||
"dev": "tsc --watch", | ||
"build": "tsc", | ||
"prepublishOnly": "yarn build" | ||
"build": "tsup", | ||
"build:watch": "npm run build -- --watch", | ||
"release": "npm run build && auto shipit" | ||
}, | ||
"devDependencies": { | ||
"react": "^18.0.0", | ||
"react-dom": "^18.0.0", | ||
"typescript": "^5.0.4" | ||
"@storybook/addon-essentials": "8.0.0", | ||
"@storybook/addon-interactions": "8.0.0", | ||
"@storybook/addon-links": "8.0.0", | ||
"@storybook/blocks": "8.0.0", | ||
"@storybook/components": "8.0.0", | ||
"@storybook/core-events": "8.0.0", | ||
"@storybook/manager": "8.0.0", | ||
"@storybook/manager-api": "8.0.0", | ||
"@storybook/preview": "8.0.0", | ||
"@storybook/preview-api": "8.0.0", | ||
"@storybook/react": "8.0.0", | ||
"@storybook/react-vite": "8.0.0", | ||
"@storybook/test": "8.0.0", | ||
"@storybook/theming": "8.0.0", | ||
"@storybook/types": "8.0.0", | ||
"@types/node": "^18.15.0", | ||
"@types/react": "^18.2.65", | ||
"@types/react-dom": "^18.2.21", | ||
"@vitejs/plugin-react": "^4.2.1", | ||
"auto": "^11.1.1", | ||
"boxen": "^7.1.1", | ||
"dedent": "^1.5.1", | ||
"npm-run-all": "^4.1.5", | ||
"prompts": "^2.4.2", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0", | ||
"storybook": "8.0.0", | ||
"tsup": "^8.0.2", | ||
"typescript": "^5.4.2", | ||
"vite": "^5.1.6", | ||
"zx": "^7.2.3" | ||
}, | ||
"peerDependencies": { | ||
"@storybook/blocks": "^8.0.0", | ||
"@storybook/components": "^8.0.0", | ||
"@storybook/manager-api": "^8.0.0", | ||
"@storybook/preview-api": "^8.0.0", | ||
"@storybook/types": "^8.0.0" | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"gitHead": "35eba02bb06cb83eccfe3cc339ce9f2da170b5e8" | ||
"bundler": { | ||
"exportEntries": [ | ||
"src/index.ts" | ||
], | ||
"managerEntries": [ | ||
"src/manager.ts" | ||
], | ||
"previewEntries": [ | ||
"src/preview.ts" | ||
], | ||
"nodeEntries": [ | ||
"src/preset.ts" | ||
] | ||
}, | ||
"storybook": { | ||
"displayName": "Cookie", | ||
"supportedFrameworks": [ | ||
"react" | ||
], | ||
"icon": "https://user-images.githubusercontent.com/321738/63501763-88dbf600-c4cc-11e9-96cd-94adadc2fd72.png" | ||
}, | ||
"gitHead": "a0047a7684bebd027d02a1316a8fca479fb1a64a" | ||
} |
@@ -7,8 +7,10 @@ <h1 align="center">Storybook Addon Cookie</h1> | ||
### Support Storybook v7 | ||
### Support Storybook v8 | ||
Starting with storybook-addon-cookie v3, it supports storybook v7. | ||
Starting with storybook-addon-cookie v4.0.0-alpha.0, it supports storybook v8. | ||
Use v2.x if you're using storybook v6.x. | ||
storybook v7 -> storybook-addon-cookie v3.x | ||
storybook v6 -> storybook-addon-cookie v2.x | ||
## Features | ||
@@ -15,0 +17,0 @@ |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Uses eval
Supply chain riskPackage uses dynamic code execution (e.g., eval()), which is a dangerous practice. This can prevent the code from running in certain environments and increases the risk that the code may contain exploits or malicious behavior.
Found 2 instances in 1 package
Dynamic require
Supply chain riskDynamic require can indicate the package is performing dangerous or unsafe dynamic code execution.
Found 1 instance in 1 package
No bug tracker
MaintenancePackage does not have a linked bug tracker in package.json.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
2095530
0
12642
1
115
Yes
31
8
1
3
7