@codeexpander/plugin-convertors 0.1.0 → 0.1.1
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/README.md +29 -0
- package/dist/plugin.json +1 -1
- package/package.json +15 -3
package/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Convertors / 转换器
|
|
2
|
+
|
|
3
|
+
**EN** — Format converters: date-time, integer base (dec/hex/bin/oct), Roman numerals, Base64 string, color (hex/rgb/hsl), text to NATO/ASCII binary/Unicode, YAML/JSON/TOML/XML/Markdown conversions, list converter, temperature. Switch between tools via tabs.
|
|
4
|
+
|
|
5
|
+
**中文** — 格式转换:日期时间、进制(十/十六/二/八)、罗马数字、Base64 字符串、颜色(hex/rgb/hsl)、文本转 NATO/ASCII 二进制/Unicode、YAML/JSON/TOML/XML/Markdown 互转、列表处理、温度单位。通过标签页切换不同工具。
|
|
6
|
+
|
|
7
|
+
## Tools / 工具列表
|
|
8
|
+
|
|
9
|
+
| id | EN | 中文 |
|
|
10
|
+
|----|-----|------|
|
|
11
|
+
| date-time-converter | Date-time Converter | 日期时间转换 |
|
|
12
|
+
| integer-base-converter | Integer Base Converter | 进制转换 |
|
|
13
|
+
| roman-numeral-converter | Roman Numeral Converter | 罗马数字转换 |
|
|
14
|
+
| base64-string-encoder | Base64 String Encoder/Decoder | Base64 字符串编解码 |
|
|
15
|
+
| color-converter | Color Converter | 颜色转换 |
|
|
16
|
+
| text-to-nato-alphabet | Text to NATO Alphabet | 文本转 NATO 字母 |
|
|
17
|
+
| text-to-ascii-binary | Text to ASCII Binary | 文本转 ASCII 二进制 |
|
|
18
|
+
| text-to-unicode | Text to Unicode | 文本转 Unicode |
|
|
19
|
+
| yaml-to-json-converter | YAML to JSON | YAML 转 JSON |
|
|
20
|
+
| yaml-to-toml | YAML to TOML | YAML 转 TOML |
|
|
21
|
+
| json-to-yaml-converter | JSON to YAML | JSON 转 YAML |
|
|
22
|
+
| json-to-toml-converter | JSON to TOML | JSON 转 TOML |
|
|
23
|
+
| list-converter | List Converter | 列表转换 |
|
|
24
|
+
| toml-to-json-converter | TOML to JSON | TOML 转 JSON |
|
|
25
|
+
| toml-to-yaml-converter | TOML to YAML | TOML 转 YAML |
|
|
26
|
+
| xml-to-json-converter | XML to JSON | XML 转 JSON |
|
|
27
|
+
| json-to-xml-converter | JSON to XML | JSON 转 XML |
|
|
28
|
+
| markdown-to-html-converter | Markdown to HTML | Markdown 转 HTML |
|
|
29
|
+
| temperature-converter | Temperature Converter | 温度转换 |
|
package/dist/plugin.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"main":"index.html","title":"Convertors","description":"
|
|
1
|
+
{"main":"index.html","title":"Convertors","description": "Convertors: date-time, base, color, YAML/JSON/TOML/XML/Markdown, list, temperature. EN | 转换器:日期、进制、颜色、格式互转、列表、温度。","category":"convertors","order":4,"features":[{"code":"convert","explain":"Various format converters","cmds":["convert","yaml","json","xml"]}],"pluginSetting":{"height":520}}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codeexpander/plugin-convertors",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -9,13 +9,25 @@
|
|
|
9
9
|
"publishConfig": {
|
|
10
10
|
"access": "public"
|
|
11
11
|
},
|
|
12
|
+
"description": "CodeExpander plugin: convertors (date-time, base, color, YAML/JSON/TOML/XML/Markdown, list, temperature). 转换器:日期、进制、颜色、格式互转、列表、温度。",
|
|
13
|
+
"keywords": [
|
|
14
|
+
"codeexpander",
|
|
15
|
+
"plugin",
|
|
16
|
+
"convert",
|
|
17
|
+
"yaml",
|
|
18
|
+
"json",
|
|
19
|
+
"xml",
|
|
20
|
+
"toml",
|
|
21
|
+
"markdown",
|
|
22
|
+
"转换器"
|
|
23
|
+
],
|
|
12
24
|
"dependencies": {
|
|
13
25
|
"date-fns": "^3.6.0",
|
|
14
26
|
"lucide-react": "^0.460.0",
|
|
15
27
|
"react": "^18.3.1",
|
|
16
28
|
"react-dom": "^18.3.1",
|
|
17
|
-
"@
|
|
18
|
-
"@
|
|
29
|
+
"@codeexpander/dev-tools-i18n": "0.0.0",
|
|
30
|
+
"@codeexpander/dev-tools-ui": "0.0.0"
|
|
19
31
|
},
|
|
20
32
|
"devDependencies": {
|
|
21
33
|
"@types/react": "^18.3.3",
|