@storybook/test 0.0.0-pr-27423-sha-1f1adcc7 → 0.0.0-pr-28410-sha-1e4b8fe0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.d.ts +52 -57
- package/dist/index.js +37 -25
- package/dist/index.mjs +38 -26
- package/package.json +18 -14
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@storybook/test",
|
3
|
-
"version": "0.0.0-pr-
|
3
|
+
"version": "0.0.0-pr-28410-sha-1e4b8fe0",
|
4
4
|
"description": "",
|
5
5
|
"keywords": [
|
6
6
|
"storybook"
|
@@ -23,9 +23,10 @@
|
|
23
23
|
"exports": {
|
24
24
|
".": {
|
25
25
|
"types": "./dist/index.d.ts",
|
26
|
-
"
|
26
|
+
"import": "./dist/index.mjs",
|
27
27
|
"require": "./dist/index.js",
|
28
|
-
"
|
28
|
+
"node": "./dist/index.js",
|
29
|
+
"default": "./dist/index.mjs"
|
29
30
|
},
|
30
31
|
"./package.json": "./package.json"
|
31
32
|
},
|
@@ -43,15 +44,12 @@
|
|
43
44
|
"prep": "node --loader ../../../scripts/node_modules/esbuild-register/loader.js -r ../../../scripts/node_modules/esbuild-register/register.js ../../../scripts/prepare/bundle.ts"
|
44
45
|
},
|
45
46
|
"dependencies": {
|
46
|
-
"@storybook/
|
47
|
-
"@
|
48
|
-
"@
|
49
|
-
"@
|
50
|
-
"@
|
51
|
-
"@
|
52
|
-
"@testing-library/user-event": "^14.5.2",
|
53
|
-
"@vitest/expect": "1.3.1",
|
54
|
-
"@vitest/spy": "^1.3.1",
|
47
|
+
"@storybook/instrumenter": "0.0.0-pr-28410-sha-1e4b8fe0",
|
48
|
+
"@testing-library/dom": "10.1.0",
|
49
|
+
"@testing-library/jest-dom": "6.4.5",
|
50
|
+
"@testing-library/user-event": "14.5.2",
|
51
|
+
"@vitest/expect": "1.6.0",
|
52
|
+
"@vitest/spy": "1.6.0",
|
55
53
|
"util": "^0.12.4"
|
56
54
|
},
|
57
55
|
"devDependencies": {
|
@@ -61,6 +59,9 @@
|
|
61
59
|
"type-fest": "~2.19",
|
62
60
|
"typescript": "^5.3.2"
|
63
61
|
},
|
62
|
+
"peerDependencies": {
|
63
|
+
"storybook": "^0.0.0-pr-28410-sha-1e4b8fe0"
|
64
|
+
},
|
64
65
|
"publishConfig": {
|
65
66
|
"access": "public"
|
66
67
|
},
|
@@ -72,8 +73,11 @@
|
|
72
73
|
"@testing-library/dom",
|
73
74
|
"@testing-library/jest-dom",
|
74
75
|
"@testing-library/user-event",
|
75
|
-
"chai"
|
76
|
+
"chai",
|
77
|
+
"@vitest/expect",
|
78
|
+
"@vitest/spy",
|
79
|
+
"@vitest/utils"
|
76
80
|
]
|
77
81
|
},
|
78
|
-
"gitHead": "
|
82
|
+
"gitHead": "e6a7fd8a655c69780bc20b9749c2699e44beae16"
|
79
83
|
}
|