-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 940 Bytes
/
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
{
"name": "shopify-3p-component-library",
"version": "0.0.1",
"description": "A third party component library for Shopify Hydrogen.",
"main": "dist/esnext/index.js",
"files": [
"dist",
"plugin.js"
],
"scripts": {
"build": "rm -rf dist/ && npm run build:plugin:cjs && npm run build:esm",
"build:plugin:cjs": "tsc --p tsconfig.plugin.cjs.json",
"build:esm": "tsc --p tsconfig.esm.json"
},
"author": "",
"license": "ISC",
"dependencies": {
"html-react-parser": "^1.4.14"
},
"devDependencies": {
"@shopify/hydrogen": "^0.21.0",
"@types/node": "^17.0.35",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.5",
"type-fest": "^2.13.0",
"typescript": "^4.7.2",
"vite": "^2.9.0"
},
"peerDependencies": {
"@shopify/hydrogen": ">=0.21.0",
"graphql-tag": "2.x"
}
}