-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.54 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
{
"name": "@shopify/app-bridge-react",
"version": "4.1.7",
"license": "MIT",
"description": "React wrappers for the Shopify App Bridge library",
"private": false,
"publishConfig": {
"access": "public",
"@shopify:registry": "https://registry.npmjs.org"
},
"sideEffects": false,
"author": "Shopify Inc.",
"repository": {
"type": "git",
"url": "git+https://github.com/Shopify/shopify-app-bridge.git"
},
"homepage": "https://shopify.dev/docs/api/app-bridge",
"type": "module",
"main": "./dist/cjs/index.cjs",
"types": "./dist/cjs/index.d.ts",
"module": "./dist/esm/index.js",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.cjs"
}
}
},
"files": [
"dist",
"CHANGELOG.md"
],
"dependencies": {
"@shopify/app-bridge-types": "0.0.16"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@types/react": "^18.2.42",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.3.3",
"vite": "^4.5.3",
"vite-plugin-dts": "^2.3.0",
"vitest": "^0.32.2"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"scripts": {
"build": "vite build",
"format": "prettier --write src/",
"lint": "oxlint src/*.{ts,tsx,js} -c .eslintrc.json",
"type-check": "tsc"
}
}