@codeexpander/plugin-graphics 0.1.2 → 0.1.3
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/assets/{index-D1LaE8aZ.js → index-0IsX1EDN.js} +33 -33
- package/dist/index.html +1 -1
- package/dist/plugin.json +26 -1
- package/package.json +4 -3
- package/plugin.json +1 -0
package/dist/index.html
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
|
-
<html lang="en"><head><meta charset="UTF-8"/><meta name="viewport" content="width=device-width,initial-scale=1.0"/><title>HTML Tools</title> <script type="module" crossorigin src="./assets/index-
|
|
2
|
+
<html lang="en"><head><meta charset="UTF-8"/><meta name="viewport" content="width=device-width,initial-scale=1.0"/><title>HTML Tools</title> <script type="module" crossorigin src="./assets/index-0IsX1EDN.js"></script>
|
|
3
3
|
<link rel="stylesheet" crossorigin href="./assets/index-CnZYXz_T.css">
|
|
4
4
|
</head><body><div id="root"></div></body></html>
|
package/dist/plugin.json
CHANGED
|
@@ -1 +1,26 @@
|
|
|
1
|
-
{
|
|
1
|
+
{
|
|
2
|
+
"main": "index.html",
|
|
3
|
+
"title": "Graphics",
|
|
4
|
+
"description": "Graphics: QR code, WiFi QR, color palette, HTML colors, camera, painting, image converter. EN | 图形:二维码、配色、颜色参考、摄像头、画板、图片转换。",
|
|
5
|
+
"category": "graphics",
|
|
6
|
+
"order": 9,
|
|
7
|
+
"features": [
|
|
8
|
+
{
|
|
9
|
+
"code": "qr",
|
|
10
|
+
"explain": "QR code generator",
|
|
11
|
+
"cmds": [
|
|
12
|
+
"qr"
|
|
13
|
+
]
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"code": "color",
|
|
17
|
+
"explain": "Color tools",
|
|
18
|
+
"cmds": [
|
|
19
|
+
"color"
|
|
20
|
+
]
|
|
21
|
+
}
|
|
22
|
+
],
|
|
23
|
+
"pluginSetting": {
|
|
24
|
+
"height": 560
|
|
25
|
+
}
|
|
26
|
+
}
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codeexpander/plugin-graphics",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.html",
|
|
7
7
|
"files": [
|
|
8
8
|
"dist",
|
|
9
|
+
"plugin.json",
|
|
9
10
|
"README.md"
|
|
10
11
|
],
|
|
11
12
|
"publishConfig": {
|
|
@@ -29,7 +30,7 @@
|
|
|
29
30
|
"react-dom": "^18.3.1",
|
|
30
31
|
"@codeexpander/dev-tools-i18n": "0.0.0",
|
|
31
32
|
"@codeexpander/dev-tools-ui": "0.0.0",
|
|
32
|
-
"@codeexpander/plugin-types": "0.0.
|
|
33
|
+
"@codeexpander/plugin-types": "0.0.3"
|
|
33
34
|
},
|
|
34
35
|
"devDependencies": {
|
|
35
36
|
"@types/react": "^18.3.3",
|
|
@@ -44,7 +45,7 @@
|
|
|
44
45
|
},
|
|
45
46
|
"scripts": {
|
|
46
47
|
"dev": "vite",
|
|
47
|
-
"build": "vite build && cp plugin.json dist/",
|
|
48
|
+
"build": "vite build && cp plugin.json dist/ && node -e \"const fs=require('fs');const p=require('./dist/plugin.json');p.main='index.html';fs.writeFileSync('dist/plugin.json',JSON.stringify(p,null,2));\"",
|
|
48
49
|
"lint": "eslint . --max-warnings 0"
|
|
49
50
|
}
|
|
50
51
|
}
|
package/plugin.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"main":"dist/index.html","title":"Graphics","description": "Graphics: QR code, WiFi QR, color palette, HTML colors, camera, painting, image converter. EN | 图形:二维码、配色、颜色参考、摄像头、画板、图片转换。","category":"graphics","order":9,"features":[{"code":"qr","explain":"QR code generator","cmds":["qr"]},{"code":"color","explain":"Color tools","cmds":["color"]}],"pluginSetting":{"height":560}}
|