@wix/sdk-react 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +37 -37
package/package.json
CHANGED
|
@@ -1,25 +1,48 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/sdk-react",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"license": "MIT",
|
|
5
|
-
"main": "build/index.cjs",
|
|
6
|
-
"module": "build/index.js",
|
|
3
|
+
"version": "1.0.2",
|
|
7
4
|
"browser": "build/browser/index.js",
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
5
|
+
"dependencies": {
|
|
6
|
+
"@wix/sdk": "1.21.1"
|
|
7
|
+
},
|
|
8
|
+
"devDependencies": {
|
|
9
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
10
|
+
"@testing-library/react": "^14.3.1",
|
|
11
|
+
"@types/react": "^18.3.27",
|
|
12
|
+
"@vitest/ui": "^1.6.1",
|
|
13
|
+
"@wix/ecom": "^1.0.886",
|
|
14
|
+
"eslint": "^8.57.1",
|
|
15
|
+
"eslint-config-sdk": "1.0.0",
|
|
16
|
+
"is-ci": "^3.0.1",
|
|
17
|
+
"jsdom": "^22.1.0",
|
|
18
|
+
"react": "^18.3.1",
|
|
19
|
+
"react-dom": "^18.3.1",
|
|
20
|
+
"tsup": "^7.3.0",
|
|
21
|
+
"typescript": "^5.9.3",
|
|
22
|
+
"vitest": "^1.6.1",
|
|
23
|
+
"vitest-teamcity-reporter": "^0.3.1"
|
|
24
|
+
},
|
|
25
|
+
"eslintConfig": {
|
|
26
|
+
"extends": "sdk"
|
|
27
|
+
},
|
|
11
28
|
"exports": {
|
|
12
29
|
"./package.json": "./package.json",
|
|
13
30
|
".": {
|
|
14
|
-
"
|
|
31
|
+
"types": "./build/index.d.ts",
|
|
15
32
|
"browser": "./build/browser/index.js",
|
|
16
|
-
"
|
|
17
|
-
"
|
|
33
|
+
"import": "./build/index.js",
|
|
34
|
+
"require": "./build/index.cjs"
|
|
18
35
|
}
|
|
19
36
|
},
|
|
20
37
|
"files": [
|
|
21
38
|
"build"
|
|
22
39
|
],
|
|
40
|
+
"license": "MIT",
|
|
41
|
+
"main": "build/index.cjs",
|
|
42
|
+
"module": "build/index.js",
|
|
43
|
+
"peerDependencies": {
|
|
44
|
+
"react": "^16.0.0 || ^17.0.0 || ^18.0.0"
|
|
45
|
+
},
|
|
23
46
|
"publishConfig": {
|
|
24
47
|
"registry": "https://registry.npmjs.org/",
|
|
25
48
|
"access": "public"
|
|
@@ -30,29 +53,9 @@
|
|
|
30
53
|
"test": "vitest",
|
|
31
54
|
"typecheck": "tsc --noEmit"
|
|
32
55
|
},
|
|
33
|
-
"
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
"peerDependencies": {
|
|
37
|
-
"react": "^16.0.0 || ^17.0.0 || ^18.0.0"
|
|
38
|
-
},
|
|
39
|
-
"devDependencies": {
|
|
40
|
-
"@testing-library/jest-dom": "^6.9.1",
|
|
41
|
-
"@testing-library/react": "^14.3.1",
|
|
42
|
-
"@types/react": "^18.3.26",
|
|
43
|
-
"@vitest/ui": "^1.6.1",
|
|
44
|
-
"@wix/ecom": "^1.0.886",
|
|
45
|
-
"eslint": "^8.57.1",
|
|
46
|
-
"eslint-config-sdk": "1.0.0",
|
|
47
|
-
"is-ci": "^3.0.1",
|
|
48
|
-
"jsdom": "^22.1.0",
|
|
49
|
-
"react": "^18.3.1",
|
|
50
|
-
"react-dom": "^18.3.1",
|
|
51
|
-
"tsup": "^7.3.0",
|
|
52
|
-
"typescript": "^5.9.3",
|
|
53
|
-
"vitest": "^1.6.1",
|
|
54
|
-
"vitest-teamcity-reporter": "^0.3.1"
|
|
55
|
-
},
|
|
56
|
+
"sideEffects": false,
|
|
57
|
+
"type": "module",
|
|
58
|
+
"types": "build/index.d.ts",
|
|
56
59
|
"wix": {
|
|
57
60
|
"artifact": {
|
|
58
61
|
"groupId": "com.wixpress",
|
|
@@ -67,8 +70,5 @@
|
|
|
67
70
|
]
|
|
68
71
|
}
|
|
69
72
|
},
|
|
70
|
-
"
|
|
71
|
-
"extends": "sdk"
|
|
72
|
-
},
|
|
73
|
-
"falconPackageHash": "629ab1eaf87a12992cec0e34cb2939f7c9bf4c78bf1197ae66fed6f8"
|
|
73
|
+
"falconPackageHash": "cb322898e4ef875981fac002a0450494dac6a41fcf044477339b727c"
|
|
74
74
|
}
|