forked from chromaui/storybook-addon-pseudo-states
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.81 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "storybook-addon-pseudo-states",
"version": "2.1.2",
"description": "CSS pseudo states for Storybook",
"keywords": [
"storybook-addons",
"pseudo states",
"style",
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/chromaui/storybook-addon-pseudo-states"
},
"author": "ghengeveld",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./manager": {
"require": "./dist/manager.js",
"import": "./dist/manager.mjs",
"types": "./dist/manager.d.ts"
},
"./preview": {
"require": "./dist/preview.js",
"import": "./dist/preview.mjs",
"types": "./dist/preview.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"*.js",
"dist/**/*"
],
"scripts": {
"clean": "rimraf ./dist",
"start": "concurrently \"yarn storybook --quiet\" \"yarn build:dist --watch\"",
"storybook": "storybook dev -p 6006",
"test": "jest src",
"chromatic": "npx chromatic",
"build:dist": "tsup",
"build:storybook": "storybook build",
"prepublish": "yarn clean && yarn build:dist",
"release": "auto shipit --base-branch=main"
},
"dependencies": {},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@chromaui/addon-visual-tests": "^0.0.105",
"@storybook/addon-essentials": "^7.4.6",
"@storybook/addon-interactions": "^7.4.6",
"@storybook/addon-links": "^7.4.6",
"@storybook/react": "^7.4.6",
"@storybook/react-webpack5": "^7.4.6",
"@storybook/testing-library": "^0.0.13",
"@storybook/types": "^7.4.6",
"@types/jest": "^29.2.4",
"auto": "^10.16.8",
"concurrently": "^5.3.0",
"jest": "^27.5.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rimraf": "^3.0.2",
"storybook": "^7.4.6",
"tsup": "^6.5.0",
"typescript": "^4.9.4"
},
"peerDependencies": {
"@storybook/components": "^7.4.6",
"@storybook/core-events": "^7.4.6",
"@storybook/manager-api": "^7.4.6",
"@storybook/preview-api": "^7.4.6",
"@storybook/theming": "^7.4.6",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"storybook": {
"displayName": "Pseudo States",
"unsupportedFrameworks": [
"react-native"
],
"icon": "https://user-images.githubusercontent.com/321738/105224055-f6c29c00-5b5c-11eb-83c9-ba28a7fbadf2.gif"
},
"auto": {
"plugins": [
"npm",
"released"
]
}
}