-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
98 lines (98 loc) · 2.22 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
{
"name": "storybook-addon-pseudo-states",
"version": "4.0.2",
"description": "CSS pseudo states for Storybook",
"keywords": [
"storybook-addons",
"pseudo states",
"style",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/chromaui/storybook-addon-pseudo-states.git"
},
"publishConfig": {
"access": "public"
},
"author": "Chromatic <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./manager": {
"import": "./dist/manager.mjs",
"require": "./dist/manager.js"
},
"./preview": {
"types": "./dist/preview.d.ts",
"import": "./dist/preview.mjs",
"require": "./dist/preview.js"
},
"./package.json": "./package.json"
},
"files": [
"*.js",
"dist/**/*"
],
"scripts": {
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest",
"chromatic": "npx chromatic",
"prepublish": "tsup",
"release": "auto shipit --base-branch=main"
},
"dependencies": {
"@storybook/icons": "^1.2.10"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.7.0",
"@storybook/react": "^8.2.9",
"@storybook/react-vite": "^8.2.9",
"@types/node": "^18.19.0",
"@vitejs/plugin-react": "^4.3.1",
"auto": "^11.1.1",
"concurrently": "^5.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^8.2.9",
"tsup": "^8.0.1",
"typescript": "^5.5.4",
"vite": "^5.4.2",
"vitest": "^2.0.5"
},
"peerDependencies": {
"storybook": "^8.2.0"
},
"bundler": {
"exportEntries": [
"src/index.ts"
],
"managerEntries": [
"src/manager.ts"
],
"previewEntries": [
"src/preview.ts"
]
},
"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"
]
}
}