forked from Shopify/quilt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.01 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
{
"name": "@shopify/rpc",
"version": "1.1.4",
"license": "MIT",
"description": "Utilities for `postMessage`-based remote procedure calls",
"main": "index.js",
"types": "index.d.ts",
"sideEffects": false,
"publishConfig": {
"access": "public",
"@shopify:registry": "https://registry.npmjs.org"
},
"author": "Shopify Inc.",
"repository": {
"type": "git",
"url": "git+https://github.com/Shopify/quilt.git",
"directory": "packages/rpc"
},
"bugs": {
"url": "https://github.com/Shopify/quilt/issues"
},
"homepage": "https://github.com/Shopify/quilt/blob/main/packages/rpc/README.md",
"files": [
"build/*",
"!*.tsbuildinfo",
"index.js",
"index.mjs",
"index.esnext",
"index.d.ts"
],
"devDependencies": {
"@types/uuid": "^3.4.6",
"uuid": "^3.3.3"
},
"module": "index.mjs",
"esnext": "index.esnext",
"exports": {
"./": "./",
".": {
"import": "./index.mjs",
"require": "./index.js",
"esnext": "./index.esnext"
}
}
}