@codeexpander/plugin-encoding 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 +13 -0
- package/dist/plugin.json +1 -1
- package/package.json +14 -3
package/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Encoding / Decoding / 编码与解码
|
|
2
|
+
|
|
3
|
+
**EN** — Encode and decode: URL (percent-encoding), Base64, and JWT inspection. Switch between tools via tabs.
|
|
4
|
+
|
|
5
|
+
**中文** — 编码与解码:URL 编码、Base64、JWT 解析。通过标签页切换不同工具。
|
|
6
|
+
|
|
7
|
+
## Tools / 工具列表
|
|
8
|
+
|
|
9
|
+
| id | EN | 中文 |
|
|
10
|
+
|----|-----|------|
|
|
11
|
+
| url-encoder | URL Encoder/Decoder | URL 编码/解码 |
|
|
12
|
+
| base64-encoder | Base64 Encoder/Decoder | Base64 编码/解码 |
|
|
13
|
+
| jwt-decoder | JWT Decoder | JWT 解码 |
|
package/dist/plugin.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"main": "index.html",
|
|
3
3
|
"title": "Encoding / Decoding",
|
|
4
|
-
"description": "URL
|
|
4
|
+
"description": "Encode/decode: URL, Base64, JWT decoder. EN | 编码解码:URL、Base64、JWT解析。",
|
|
5
5
|
"category": "encoding",
|
|
6
6
|
"order": 2,
|
|
7
7
|
"features": [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codeexpander/plugin-encoding",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -9,12 +9,23 @@
|
|
|
9
9
|
"publishConfig": {
|
|
10
10
|
"access": "public"
|
|
11
11
|
},
|
|
12
|
+
"description": "CodeExpander plugin: encoding/decoding (URL, Base64, JWT decoder). 编码解码:URL、Base64、JWT解析。",
|
|
13
|
+
"keywords": [
|
|
14
|
+
"codeexpander",
|
|
15
|
+
"plugin",
|
|
16
|
+
"encode",
|
|
17
|
+
"decode",
|
|
18
|
+
"url",
|
|
19
|
+
"base64",
|
|
20
|
+
"jwt",
|
|
21
|
+
"编码"
|
|
22
|
+
],
|
|
12
23
|
"dependencies": {
|
|
13
24
|
"lucide-react": "^0.462.0",
|
|
14
25
|
"react": "^18.3.1",
|
|
15
26
|
"react-dom": "^18.3.1",
|
|
16
|
-
"@
|
|
17
|
-
"@
|
|
27
|
+
"@codeexpander/dev-tools-ui": "0.0.0",
|
|
28
|
+
"@codeexpander/dev-tools-i18n": "0.0.0"
|
|
18
29
|
},
|
|
19
30
|
"devDependencies": {
|
|
20
31
|
"@types/react": "^18.3.3",
|