@okendo/shopify-hydrogen 2.0.0 → 2.0.1
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/README.md +1 -0
- package/package.json +44 -46
package/README.md
CHANGED
|
@@ -7,6 +7,7 @@ This package brings [Okendo's review widgets](https://www.okendo.io/blog/widget-
|
|
|
7
7
|
## Requirements
|
|
8
8
|
|
|
9
9
|
- A Shopify store with the **Okendo: Product Reviews & UCG** app installed and configured.
|
|
10
|
+
- For existing merchants, your store must be upgraded to Okendo's Widget Plus widgets. It is free to upgrade. For more information please [contact Okendo Support](mailto:support@okendo.io).
|
|
10
11
|
- A current Okendo subscription.
|
|
11
12
|
- A [Storefront access token](https://github.com/okendo/okendo-shopify-hydrogen-demo/wiki/Configure-Shopify-Storefront-API).
|
|
12
13
|
- A [Shopify Hydrogen](https://hydrogen.shopify.dev/) app.
|
package/package.json
CHANGED
|
@@ -1,48 +1,46 @@
|
|
|
1
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
|
-
"react": "^18.2.0"
|
|
47
|
-
}
|
|
2
|
+
"name": "@okendo/shopify-hydrogen",
|
|
3
|
+
"version": "2.0.1",
|
|
4
|
+
"description": "Okendo React components for Shopify Hydrogen 2 (Remix)",
|
|
5
|
+
"author": "Okendo",
|
|
6
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
7
|
+
"engines": {
|
|
8
|
+
"node": ">=16.14"
|
|
9
|
+
},
|
|
10
|
+
"main": "dist/cjs/index.js",
|
|
11
|
+
"module": "dist/esm/index.js",
|
|
12
|
+
"files": [
|
|
13
|
+
"dist"
|
|
14
|
+
],
|
|
15
|
+
"types": "dist/index.d.ts",
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "npm run eslint -- --max-warnings=0 && rimraf dist && rollup -c",
|
|
18
|
+
"eslint": "eslint src"
|
|
19
|
+
},
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"@okendo/reviews-common": "^5.38.0",
|
|
22
|
+
"@okendo/reviews-widget-plus": "^0.67.0",
|
|
23
|
+
"@okendo/tsconfig": "0.0.2",
|
|
24
|
+
"@rollup/plugin-commonjs": "^24.1.0",
|
|
25
|
+
"@rollup/plugin-node-resolve": "^15.0.2",
|
|
26
|
+
"@rollup/plugin-terser": "^0.4.1",
|
|
27
|
+
"@rollup/plugin-typescript": "^11.1.0",
|
|
28
|
+
"@types/react": "^18.0.20",
|
|
29
|
+
"@types/react-dom": "^18.0.6",
|
|
30
|
+
"@typescript-eslint/eslint-plugin": "^5.58.0",
|
|
31
|
+
"@typescript-eslint/parser": "^5.58.0",
|
|
32
|
+
"eslint": "^8.20.0",
|
|
33
|
+
"eslint-plugin-react": "^7.32.2",
|
|
34
|
+
"eslint-plugin-react-hooks": "^4.6.0",
|
|
35
|
+
"rimraf": "^5.0.0",
|
|
36
|
+
"rollup": "^3.20.2",
|
|
37
|
+
"rollup-plugin-dts": "^5.3.0",
|
|
38
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
39
|
+
"typescript": "^4.9.5"
|
|
40
|
+
},
|
|
41
|
+
"peerDependencies": {
|
|
42
|
+
"@shopify/hydrogen": "^2023.1.6",
|
|
43
|
+
"@shopify/remix-oxygen": "^1.0.4",
|
|
44
|
+
"react": "^18.2.0"
|
|
45
|
+
}
|
|
48
46
|
}
|