@intlify/message-compiler 12.0.0-alpha.2 → 12.0.0-alpha.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/message-compiler.d.ts +189 -230
- package/dist/message-compiler.esm-browser.js +1216 -1481
- package/dist/message-compiler.esm-browser.prod.js +788 -6
- package/dist/message-compiler.esm-bundler.js +1 -1
- package/dist/message-compiler.global.js +1295 -1561
- package/dist/message-compiler.global.prod.js +803 -6
- package/dist/message-compiler.js +1200 -1464
- package/dist/message-compiler.node.js +1242 -1517
- package/package.json +38 -38
package/package.json
CHANGED
|
@@ -1,72 +1,72 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@intlify/message-compiler",
|
|
3
|
-
"version": "12.0.0-alpha.2",
|
|
4
3
|
"description": "@intlify/message-compiler",
|
|
5
|
-
"
|
|
6
|
-
"compiler",
|
|
7
|
-
"i18n",
|
|
8
|
-
"internationalization",
|
|
9
|
-
"intlify",
|
|
10
|
-
"message-format"
|
|
11
|
-
],
|
|
12
|
-
"license": "MIT",
|
|
4
|
+
"version": "12.0.0-alpha.4",
|
|
13
5
|
"author": {
|
|
14
6
|
"name": "kazuya kawaguchi",
|
|
15
7
|
"email": "kawakazu80@gmail.com"
|
|
16
8
|
},
|
|
17
|
-
"
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"funding": "https://github.com/sponsors/kazupon",
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/intlify/vue-i18n/issues"
|
|
13
|
+
},
|
|
18
14
|
"repository": {
|
|
19
15
|
"type": "git",
|
|
20
16
|
"url": "git+https://github.com/intlify/vue-i18n.git",
|
|
21
17
|
"directory": "packages/message-compiler"
|
|
22
18
|
},
|
|
23
|
-
"
|
|
24
|
-
"
|
|
19
|
+
"keywords": [
|
|
20
|
+
"compiler",
|
|
21
|
+
"i18n",
|
|
22
|
+
"internationalization",
|
|
23
|
+
"intlify",
|
|
24
|
+
"message-format"
|
|
25
|
+
],
|
|
26
|
+
"homepage": "https://github.com/intlify/vue-i18n/tree/master/packages/message-compiler#readme",
|
|
27
|
+
"publishConfig": {
|
|
28
|
+
"access": "public"
|
|
29
|
+
},
|
|
30
|
+
"engines": {
|
|
31
|
+
"node": ">= 22"
|
|
25
32
|
},
|
|
33
|
+
"type": "module",
|
|
34
|
+
"sideEffects": false,
|
|
26
35
|
"files": [
|
|
27
36
|
"dist"
|
|
28
37
|
],
|
|
29
|
-
"type": "module",
|
|
30
38
|
"module": "dist/message-compiler.js",
|
|
31
39
|
"unpkg": "dist/message-compiler.global.js",
|
|
32
40
|
"jsdelivr": "dist/message-compiler.global.js",
|
|
33
|
-
"types": "dist/message-compiler.d.ts",
|
|
34
|
-
"dependencies": {
|
|
35
|
-
"source-map-js": "^1.0.2",
|
|
36
|
-
"@intlify/shared": "12.0.0-alpha.2"
|
|
37
|
-
},
|
|
38
|
-
"engines": {
|
|
39
|
-
"node": ">= 16"
|
|
40
|
-
},
|
|
41
|
-
"buildOptions": {
|
|
42
|
-
"name": "IntlifyMessageCompiler",
|
|
43
|
-
"formats": [
|
|
44
|
-
"mjs",
|
|
45
|
-
"mjs-node",
|
|
46
|
-
"browser",
|
|
47
|
-
"global"
|
|
48
|
-
],
|
|
49
|
-
"enableFullBundleForEsmBrowser": true
|
|
50
|
-
},
|
|
51
41
|
"exports": {
|
|
52
42
|
".": {
|
|
53
43
|
"types": "./dist/message-compiler.d.ts",
|
|
54
|
-
"import": "./dist/message-compiler.js",
|
|
55
|
-
"browser": "./dist/message-compiler.esm-browser.js",
|
|
56
44
|
"node": {
|
|
57
45
|
"import": {
|
|
58
46
|
"production": "./dist/message-compiler.node.js",
|
|
59
47
|
"development": "./dist/message-compiler.node.js",
|
|
60
48
|
"default": "./dist/message-compiler.node.js"
|
|
61
49
|
}
|
|
62
|
-
}
|
|
50
|
+
},
|
|
51
|
+
"import": "./dist/message-compiler.js",
|
|
52
|
+
"browser": "./dist/message-compiler.esm-browser.js"
|
|
63
53
|
},
|
|
64
54
|
"./dist/*": "./dist/*",
|
|
65
55
|
"./package.json": "./package.json"
|
|
66
56
|
},
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
"
|
|
57
|
+
"types": "dist/message-compiler.d.ts",
|
|
58
|
+
"dependencies": {
|
|
59
|
+
"source-map-js": "^1.0.2",
|
|
60
|
+
"@intlify/shared": "12.0.0-alpha.4"
|
|
70
61
|
},
|
|
71
|
-
"
|
|
62
|
+
"buildOptions": {
|
|
63
|
+
"name": "IntlifyMessageCompiler",
|
|
64
|
+
"formats": [
|
|
65
|
+
"mjs",
|
|
66
|
+
"mjs-node",
|
|
67
|
+
"browser",
|
|
68
|
+
"global"
|
|
69
|
+
],
|
|
70
|
+
"enableFullBundleForEsmBrowser": true
|
|
71
|
+
}
|
|
72
72
|
}
|