forked from ducthu/storybook-addon-jotai
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
95 lines (95 loc) · 2.17 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
{
"name": "@alexgorbatchev/storybook-addon-jotai",
"version": "3.0.6",
"description": "A Storybook addon that allows you to use and mock React components that rely on Jotai.",
"keywords": [
"storybook-addons",
"jotai",
"mocking",
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/alexgorbatchev/storybook-addon-jotai"
},
"authors": [
"Alex Gorbatchev <[email protected]>"
],
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./preset": {
"import": {
"types": "./dist/preset.d.ts",
"default": "./dist/preset.js"
},
"require": {
"types": "./dist/preset.d.cts",
"default": "./dist/preset.cjs"
}
},
"./package.json": "./package.json"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md",
"*.png",
"!src/**/*"
],
"scripts": {
"storybook": "storybook dev --port 6006",
"build": "tsup"
},
"devDependencies": {
"@storybook/components": "^8.1.5",
"@storybook/manager-api": "^8.1.5",
"@storybook/preview-api": "^8.1.5",
"@storybook/types": "^8.1.5",
"@storybook/react-vite": "^8.1.5",
"@vitejs/plugin-react": "^4.2.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"jotai": "^2.8.1",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"storybook": "^8.1.5",
"tsup": "^8.1.0",
"vite": "^5.2.0"
},
"peerDependencies": {
"jotai": "^2.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"publishConfig": {
"access": "public"
},
"storybook": {
"displayName": "Jotai",
"supportedFrameworks": [
"react"
],
"icon": "https://user-images.githubusercontent.com/321738/63501763-88dbf600-c4cc-11e9-96cd-94adadc2fd72.png"
}
}