@codeexpander/plugin-encoding 0.1.0
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/LICENSE +22 -0
- package/dist/assets/index-B1wGbSZd.css +1 -0
- package/dist/assets/index-DP0Ouweo.js +219 -0
- package/dist/index.html +13 -0
- package/dist/plugin.json +13 -0
- package/package.json +35 -0
package/dist/index.html
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="UTF-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
+
<title>Encoding Tools</title>
|
|
7
|
+
<script type="module" crossorigin src="./assets/index-DP0Ouweo.js"></script>
|
|
8
|
+
<link rel="stylesheet" crossorigin href="./assets/index-B1wGbSZd.css">
|
|
9
|
+
</head>
|
|
10
|
+
<body>
|
|
11
|
+
<div id="root"></div>
|
|
12
|
+
</body>
|
|
13
|
+
</html>
|
package/dist/plugin.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"main": "index.html",
|
|
3
|
+
"title": "Encoding / Decoding",
|
|
4
|
+
"description": "URL encoder/decoder, Base64, JWT decoder.",
|
|
5
|
+
"category": "encoding",
|
|
6
|
+
"order": 2,
|
|
7
|
+
"features": [
|
|
8
|
+
{ "code": "url_encoder", "explain": "Encode and decode URLs", "cmds": ["url encode", "decode"] },
|
|
9
|
+
{ "code": "base64", "explain": "Base64 encode and decode", "cmds": ["base64"] },
|
|
10
|
+
{ "code": "jwt_decoder", "explain": "Decode and inspect JWT", "cmds": ["jwt", "token"] }
|
|
11
|
+
],
|
|
12
|
+
"pluginSetting": { "height": 480 }
|
|
13
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@codeexpander/plugin-encoding",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"type": "module",
|
|
6
|
+
"files": [
|
|
7
|
+
"dist"
|
|
8
|
+
],
|
|
9
|
+
"publishConfig": {
|
|
10
|
+
"access": "public"
|
|
11
|
+
},
|
|
12
|
+
"dependencies": {
|
|
13
|
+
"lucide-react": "^0.462.0",
|
|
14
|
+
"react": "^18.3.1",
|
|
15
|
+
"react-dom": "^18.3.1",
|
|
16
|
+
"@online-dev-tools/i18n": "0.0.0",
|
|
17
|
+
"@online-dev-tools/ui": "0.0.0"
|
|
18
|
+
},
|
|
19
|
+
"devDependencies": {
|
|
20
|
+
"@types/react": "^18.3.3",
|
|
21
|
+
"@types/react-dom": "^18.3.0",
|
|
22
|
+
"@vitejs/plugin-react-swc": "^3.5.0",
|
|
23
|
+
"autoprefixer": "^10.4.20",
|
|
24
|
+
"postcss": "^8.4.47",
|
|
25
|
+
"tailwindcss": "^3.4.11",
|
|
26
|
+
"tailwindcss-animate": "^1.0.7",
|
|
27
|
+
"typescript": "^5.5.3",
|
|
28
|
+
"vite": "^5.4.1"
|
|
29
|
+
},
|
|
30
|
+
"scripts": {
|
|
31
|
+
"dev": "vite",
|
|
32
|
+
"build": "vite build && cp plugin.json dist/",
|
|
33
|
+
"lint": "eslint . --max-warnings 0"
|
|
34
|
+
}
|
|
35
|
+
}
|