@geekron/strapi 0.1.2 → 0.1.4
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/admin/index.js +51123 -12
- package/dist/admin/index.mjs +51211 -3
- package/dist/server/index.js +844 -32
- package/dist/server/index.mjs +845 -32
- package/package.json +22 -11
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geekron/strapi",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.1.4",
|
|
4
|
+
"description": "极客领航网站管理插件",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"author": "Geekron",
|
|
7
7
|
"license": "MIT",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "https://github.com/geekron/strapi"
|
|
10
|
+
"url": "https://github.com/geekron-com/strapi"
|
|
11
11
|
},
|
|
12
12
|
"keywords": [
|
|
13
13
|
"strapi",
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
],
|
|
18
18
|
"scripts": {
|
|
19
19
|
"build": "./shell/build.sh",
|
|
20
|
+
"dev": "./shell/build.sh watch",
|
|
20
21
|
"format": "bunx biome format --write",
|
|
21
22
|
"lint": "bunx biome lint --write",
|
|
22
23
|
"check": "bunx biome check --write",
|
|
@@ -42,28 +43,38 @@
|
|
|
42
43
|
}
|
|
43
44
|
},
|
|
44
45
|
"peerDependencies": {
|
|
45
|
-
"@strapi/strapi": ">=5.
|
|
46
|
+
"@strapi/strapi": ">=5.33.0",
|
|
46
47
|
"react": "^18.0.0",
|
|
47
48
|
"react-dom": "^18.0.0",
|
|
48
49
|
"react-router-dom": "^6.0.0",
|
|
49
50
|
"styled-components": "^6.0.0",
|
|
50
|
-
"typescript": "^5
|
|
51
|
+
"typescript": "^5"
|
|
51
52
|
},
|
|
52
53
|
"dependencies": {
|
|
53
|
-
"
|
|
54
|
+
"@dnd-kit/core": "^6.3.1",
|
|
55
|
+
"@iconify/react": "^6.0.2",
|
|
56
|
+
"@types/voca": "^1.4.6",
|
|
57
|
+
"@uidotdev/usehooks": "^2.4.1",
|
|
58
|
+
"glob": "^13.0.0",
|
|
59
|
+
"pinyin-pro": "^3.27.0",
|
|
60
|
+
"radash": "^12.1.1",
|
|
61
|
+
"react-colorful": "^5.6.1",
|
|
62
|
+
"react-window": "^2.2.3",
|
|
63
|
+
"voca": "^1.4.1"
|
|
54
64
|
},
|
|
55
65
|
"devDependencies": {
|
|
56
66
|
"@biomejs/biome": "^2.3.10",
|
|
57
67
|
"@types/bun": "latest",
|
|
58
|
-
"@types/react": "^18
|
|
59
|
-
"@types/react-dom": "^18
|
|
68
|
+
"@types/react": "^18",
|
|
69
|
+
"@types/react-dom": "^18",
|
|
70
|
+
"@types/react-window": "^2.0.0",
|
|
60
71
|
"tsx": "^4.19.0"
|
|
61
72
|
},
|
|
62
73
|
"strapi": {
|
|
63
74
|
"kind": "plugin",
|
|
64
|
-
"name": "
|
|
65
|
-
"displayName": "
|
|
66
|
-
"description": "
|
|
75
|
+
"name": "website",
|
|
76
|
+
"displayName": "Website",
|
|
77
|
+
"description": "极客领航网站管理插件"
|
|
67
78
|
},
|
|
68
79
|
"publishConfig": {
|
|
69
80
|
"access": "public"
|