strapi-plugin-magic-sessionmanager 1.0.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/package.json ADDED
@@ -0,0 +1,89 @@
1
+ {
2
+ "version": "1.0.0",
3
+ "keywords": [
4
+ "strapi",
5
+ "strapi-plugin",
6
+ "strapi-v5",
7
+ "sessions",
8
+ "user-tracking",
9
+ "login-logout",
10
+ "activity-monitoring"
11
+ ],
12
+ "type": "commonjs",
13
+ "exports": {
14
+ "./package.json": "./package.json",
15
+ "./strapi-admin": {
16
+ "source": "./admin/src/index.js",
17
+ "import": "./dist/admin/index.mjs",
18
+ "require": "./dist/admin/index.js",
19
+ "default": "./dist/admin/index.js"
20
+ },
21
+ "./strapi-server": {
22
+ "source": "./server/src/index.js",
23
+ "import": "./dist/server/index.mjs",
24
+ "require": "./dist/server/index.js",
25
+ "default": "./dist/server/index.js"
26
+ }
27
+ },
28
+ "files": [
29
+ "dist",
30
+ "strapi-admin.js",
31
+ "strapi-server.js",
32
+ "README.md",
33
+ "LICENSE"
34
+ ],
35
+ "scripts": {
36
+ "build": "strapi-plugin build",
37
+ "watch": "strapi-plugin watch",
38
+ "watch:link": "strapi-plugin watch:link",
39
+ "verify": "strapi-plugin verify"
40
+ },
41
+ "dependencies": {
42
+ "@strapi/design-system": "^2.0.0-rc.30",
43
+ "@strapi/icons": "^2.0.0-rc.30",
44
+ "react-intl": "^7.1.14"
45
+ },
46
+ "devDependencies": {
47
+ "semantic-release": "^24.2.3",
48
+ "@semantic-release/changelog": "^6.0.3",
49
+ "@semantic-release/commit-analyzer": "^13.0.0",
50
+ "@semantic-release/git": "^10.0.1",
51
+ "@semantic-release/github": "^11.0.2",
52
+ "@semantic-release/npm": "^12.0.1",
53
+ "@semantic-release/release-notes-generator": "^14.0.1",
54
+ "@strapi/strapi": "^5.30.0",
55
+ "@strapi/sdk-plugin": "^5.3.2",
56
+ "prettier": "^3.6.2",
57
+ "react": "^18.3.1",
58
+ "react-dom": "^18.3.1",
59
+ "react-router-dom": "^6.30.1",
60
+ "styled-components": "^6.1.19"
61
+ },
62
+ "peerDependencies": {
63
+ "@strapi/strapi": "^5.30.0",
64
+ "@strapi/sdk-plugin": "^5.3.2",
65
+ "react": "^18.3.1",
66
+ "react-dom": "^18.3.1",
67
+ "react-router-dom": "^6.30.1",
68
+ "styled-components": "^6.1.19"
69
+ },
70
+ "strapi": {
71
+ "kind": "plugin",
72
+ "name": "magic-sessionmanager",
73
+ "displayName": "Magic Sessionmanager",
74
+ "description": "Advanced session management for Strapi v5 - Track user login/logout, session history, and online status"
75
+ },
76
+ "name": "strapi-plugin-magic-sessionmanager",
77
+ "description": "Advanced Session Management for Strapi v5 - Track user sessions with IP geolocation, security scoring, and real-time monitoring",
78
+ "license": "MIT",
79
+ "author": "Schero D.",
80
+ "repository": {
81
+ "type": "git",
82
+ "url": "https://github.com/Schero94/Magic-Sessionmanager.git"
83
+ },
84
+ "bugs": {
85
+ "url": "https://github.com/Schero94/Magic-Sessionmanager/issues"
86
+ },
87
+ "homepage": "https://github.com/Schero94/Magic-Sessionmanager#readme",
88
+ "private": false
89
+ }
@@ -0,0 +1,4 @@
1
+ 'use strict';
2
+
3
+ module.exports = require('./admin/src/index.js');
4
+
@@ -0,0 +1,4 @@
1
+ 'use strict';
2
+
3
+ module.exports = require('./server/src/index.js');
4
+