-
-
Notifications
You must be signed in to change notification settings - Fork 334
/
package.json
82 lines (82 loc) · 1.84 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@intlify/core",
"version": "10.0.4",
"description": "@intlify/core",
"keywords": [
"core",
"fundamental",
"i18n",
"internationalization",
"intlify"
],
"license": "MIT",
"author": {
"name": "kazuya kawaguchi",
"email": "[email protected]"
},
"homepage": "https://github.com/intlify/vue-i18n/tree/master/packages/core#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/intlify/vue-i18n.git",
"directory": "packages/core"
},
"bugs": {
"url": "https://github.com/intlify/vue-i18n/issues"
},
"files": [
"index.js",
"dist"
],
"main": "index.js",
"module": "dist/core.mjs",
"unpkg": "dist/core.global.js",
"jsdelivr": "dist/core.global.js",
"types": "dist/core.d.ts",
"dependencies": {
"@intlify/core-base": "workspace:*",
"@intlify/shared": "workspace:*"
},
"engines": {
"node": ">= 16"
},
"buildOptions": {
"name": "IntlifyCore",
"formats": [
"mjs",
"mjs-node",
"mjs-runtime",
"mjs-node-runtime",
"browser",
"browser-runtime",
"cjs",
"global",
"global-runtime"
]
},
"exports": {
".": {
"types": "./dist/core.d.ts",
"import": "./dist/core.mjs",
"browser": "./dist/core.esm-browser.js",
"node": {
"import": {
"production": "./dist/core.prod.node.mjs",
"development": "./dist/core.node.mjs",
"default": "./dist/core.node.mjs"
},
"require": {
"production": "./dist/core.prod.cjs",
"development": "./dist/core.cjs",
"default": "./index.js"
}
}
},
"./dist/*": "./dist/*",
"./package.json": "./package.json"
},
"funding": "https://github.com/sponsors/kazupon",
"publishConfig": {
"access": "public"
},
"sideEffects": false
}