@codeexpander/plugin-currency 0.1.1 → 0.1.2
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/plugin.json +8 -1
- package/package.json +4 -4
- package/plugin.json +9 -2
package/dist/plugin.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"main": "index.html",
|
|
3
3
|
"title": "Currency",
|
|
4
|
-
"description": "Exchange rate lookup and currency converter.
|
|
4
|
+
"description": "Exchange rate lookup and currency converter.",
|
|
5
5
|
"category": "convertors",
|
|
6
6
|
"order": 6,
|
|
7
7
|
"features": [
|
|
@@ -26,5 +26,12 @@
|
|
|
26
26
|
"pluginSetting": {
|
|
27
27
|
"height": 800,
|
|
28
28
|
"width": 1200
|
|
29
|
+
},
|
|
30
|
+
"i18n": {
|
|
31
|
+
"zh_CN": {
|
|
32
|
+
"title": "货币",
|
|
33
|
+
"description": "汇率查询与货币转换。",
|
|
34
|
+
"category": "转换器"
|
|
35
|
+
}
|
|
29
36
|
}
|
|
30
37
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codeexpander/plugin-currency",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.html",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"publishConfig": {
|
|
13
13
|
"access": "public"
|
|
14
14
|
},
|
|
15
|
-
"description": "
|
|
15
|
+
"description": "Currency - Exchange rate lookup and currency converter. | 货币 - 汇率查询与货币转换。",
|
|
16
16
|
"keywords": [
|
|
17
17
|
"codeexpander",
|
|
18
18
|
"plugin",
|
|
@@ -38,9 +38,9 @@
|
|
|
38
38
|
"tailwindcss-animate": "^1.0.7",
|
|
39
39
|
"typescript": "^5.5.3",
|
|
40
40
|
"vite": "^5.4.1",
|
|
41
|
-
"@codeexpander/dev-tools-ui": "0.0.0",
|
|
42
41
|
"@codeexpander/dev-tools-i18n": "0.0.0",
|
|
43
|
-
"@codeexpander/plugin-types": "0.0.
|
|
42
|
+
"@codeexpander/plugin-types": "0.0.9",
|
|
43
|
+
"@codeexpander/dev-tools-ui": "0.0.0"
|
|
44
44
|
},
|
|
45
45
|
"scripts": {
|
|
46
46
|
"dev": "vite",
|
package/plugin.json
CHANGED
|
@@ -1,12 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"main": "dist/index.html",
|
|
3
3
|
"title": "Currency",
|
|
4
|
-
"description": "Exchange rate lookup and currency converter.
|
|
4
|
+
"description": "Exchange rate lookup and currency converter.",
|
|
5
5
|
"category": "convertors",
|
|
6
6
|
"order": 6,
|
|
7
7
|
"features": [
|
|
8
8
|
{ "code": "currency", "explain": "Exchange rate lookup", "cmds": ["currency", "exchange", "汇率"] },
|
|
9
9
|
{ "code": "convert", "explain": "Currency converter", "cmds": ["convert", "转换"] }
|
|
10
10
|
],
|
|
11
|
-
"pluginSetting": { "height": 800, "width": 1200 }
|
|
11
|
+
"pluginSetting": { "height": 800, "width": 1200 },
|
|
12
|
+
"i18n": {
|
|
13
|
+
"zh_CN": {
|
|
14
|
+
"title": "货币",
|
|
15
|
+
"description": "汇率查询与货币转换。",
|
|
16
|
+
"category": "转换器"
|
|
17
|
+
}
|
|
18
|
+
}
|
|
12
19
|
}
|