strapi-security-suite 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/README.md +166 -0
- package/dist/_chunks/App-_xsdnv0p.js +191 -0
- package/dist/_chunks/App-h9NYFBrR.mjs +191 -0
- package/dist/_chunks/en-B4KWt_jN.js +4 -0
- package/dist/_chunks/en-Byx4XI2L.mjs +4 -0
- package/dist/admin/index.js +119 -0
- package/dist/admin/index.mjs +120 -0
- package/dist/server/index.js +25487 -0
- package/dist/server/index.mjs +25476 -0
- package/package.json +75 -0
package/package.json
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.1.0",
|
|
3
|
+
"keywords": [
|
|
4
|
+
"strapi",
|
|
5
|
+
"plugin",
|
|
6
|
+
"security",
|
|
7
|
+
"session",
|
|
8
|
+
"management",
|
|
9
|
+
"password",
|
|
10
|
+
"admin",
|
|
11
|
+
"v5"
|
|
12
|
+
],
|
|
13
|
+
"type": "commonjs",
|
|
14
|
+
"exports": {
|
|
15
|
+
"./package.json": "./package.json",
|
|
16
|
+
"./strapi-admin": {
|
|
17
|
+
"source": "./admin/src/index.js",
|
|
18
|
+
"import": "./dist/admin/index.mjs",
|
|
19
|
+
"require": "./dist/admin/index.js",
|
|
20
|
+
"default": "./dist/admin/index.js"
|
|
21
|
+
},
|
|
22
|
+
"./strapi-server": {
|
|
23
|
+
"source": "./server/src/index.js",
|
|
24
|
+
"import": "./dist/server/index.mjs",
|
|
25
|
+
"require": "./dist/server/index.js",
|
|
26
|
+
"default": "./dist/server/index.js"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
"files": [
|
|
30
|
+
"dist",
|
|
31
|
+
"README.md",
|
|
32
|
+
"LICENSE",
|
|
33
|
+
"strapi-admin.js",
|
|
34
|
+
"strapi-server.js"
|
|
35
|
+
],
|
|
36
|
+
"scripts": {
|
|
37
|
+
"build": "strapi-plugin build",
|
|
38
|
+
"watch": "strapi-plugin watch",
|
|
39
|
+
"watch:link": "strapi-plugin watch:link",
|
|
40
|
+
"verify": "strapi-plugin verify",
|
|
41
|
+
"prepublishOnly": "yarn build"
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@strapi/design-system": "^2.0.0-rc.18",
|
|
45
|
+
"@strapi/icons": "^2.0.0-rc.18",
|
|
46
|
+
"react-intl": "^7.1.6"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@strapi/strapi": "^5.11.3",
|
|
50
|
+
"@strapi/sdk-plugin": "^5.3.2",
|
|
51
|
+
"prettier": "^3.5.3",
|
|
52
|
+
"react": "^18.3.1",
|
|
53
|
+
"react-dom": "^18.3.1",
|
|
54
|
+
"react-router-dom": "^6.30.0",
|
|
55
|
+
"styled-components": "^6.1.16"
|
|
56
|
+
},
|
|
57
|
+
"peerDependencies": {
|
|
58
|
+
"@strapi/strapi": "^5.11.3",
|
|
59
|
+
"@strapi/sdk-plugin": "^5.3.2",
|
|
60
|
+
"react": "^18.3.1",
|
|
61
|
+
"react-dom": "^18.3.1",
|
|
62
|
+
"react-router-dom": "^6.30.0",
|
|
63
|
+
"styled-components": "^6.1.16"
|
|
64
|
+
},
|
|
65
|
+
"strapi": {
|
|
66
|
+
"kind": "plugin",
|
|
67
|
+
"name": "strapi-security-suite",
|
|
68
|
+
"displayName": "Strapi Security Suite",
|
|
69
|
+
"description": "All-in-one authentication and session security plugin for Strapi v5"
|
|
70
|
+
},
|
|
71
|
+
"name": "strapi-security-suite",
|
|
72
|
+
"description": "All-in-one authentication and session security plugin for Strapi v5",
|
|
73
|
+
"license": "MIT",
|
|
74
|
+
"author": "(LPIX-11) <mohamed.johnson@orange-sonatel.com>"
|
|
75
|
+
}
|