@codeexpander/plugin-security 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 +14 -0
- package/dist/plugin.json +1 -1
- package/package.json +14 -3
package/README.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
# Security / 安全
|
|
2
|
+
|
|
3
|
+
**EN** — Security utilities: hash generator (MD5, SHA-1/256/384/512), htpasswd generator, strong password generator, credential format detector. Switch between tools via tabs.
|
|
4
|
+
|
|
5
|
+
**中文** — 安全工具:哈希生成(MD5、SHA 等)、htpasswd 生成、强密码生成、凭证格式检测。通过标签页切换不同工具。
|
|
6
|
+
|
|
7
|
+
## Tools / 工具列表
|
|
8
|
+
|
|
9
|
+
| id | EN | 中文 |
|
|
10
|
+
|----|-----|------|
|
|
11
|
+
| hash-generator | Hash Generator | 哈希生成 |
|
|
12
|
+
| htpasswd-generator | Htpasswd Generator | Htpasswd 生成 |
|
|
13
|
+
| strong-password-generator | Strong Password Generator | 强密码生成 |
|
|
14
|
+
| credential-format-detector | Credential Format Detector | 凭证格式检测 |
|
package/dist/plugin.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"main":"index.html","title":"Security","description":"
|
|
1
|
+
{"main":"index.html","title":"Security","description": "Security: hash generator, htpasswd, strong password, credential detector. EN | 安全:哈希、htpasswd、强密码、凭证检测。","category":"security","order":7,"features":[{"code":"hash","explain":"Generate hashes","cmds":["hash","md5","sha"]},{"code":"password","explain":"Password generator","cmds":["password"]}],"pluginSetting":{"height":480}}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codeexpander/plugin-security",
|
|
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: security (hash, htpasswd, password generator, credential detector). 安全:哈希、htpasswd、强密码、凭证检测。",
|
|
13
|
+
"keywords": [
|
|
14
|
+
"codeexpander",
|
|
15
|
+
"plugin",
|
|
16
|
+
"security",
|
|
17
|
+
"hash",
|
|
18
|
+
"password",
|
|
19
|
+
"htpasswd",
|
|
20
|
+
"安全",
|
|
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-i18n": "0.0.0",
|
|
28
|
+
"@codeexpander/dev-tools-ui": "0.0.0"
|
|
18
29
|
},
|
|
19
30
|
"devDependencies": {
|
|
20
31
|
"@types/react": "^18.3.3",
|