forked from Shopify/quilt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 936 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
34
35
36
37
38
39
40
41
{
"name": "@shopify/i18n",
"version": "0.2.7",
"license": "MIT",
"description": "Generic i18n-related utilities",
"main": "index.js",
"types": "index.d.ts",
"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/i18n"
},
"bugs": {
"url": "https://github.com/Shopify/quilt/issues"
},
"homepage": "https://github.com/Shopify/quilt/blob/main/packages/i18n/README.md",
"sideEffects": false,
"files": [
"build/*",
"!*.tsbuildinfo",
"index.js",
"index.mjs",
"index.esnext",
"index.d.ts"
],
"module": "index.mjs",
"esnext": "index.esnext",
"exports": {
"./": "./",
".": {
"import": "./index.mjs",
"require": "./index.js",
"esnext": "./index.esnext"
}
}
}