-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.47 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 3.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"version": "4.6.3",
"keywords": [
"strapi",
"plugin",
"strapi-plugin",
"strapi-v5",
"sessions",
"user-tracking",
"login-logout",
"activity-monitoring"
],
"type": "commonjs",
"bin": {
"strapi-magic-sessionmanager-geoip": "./scripts/update-geoip-db.mjs"
},
"exports": {
"./package.json": "./package.json",
"./strapi-admin": {
"source": "./admin/src/index.js",
"import": "./dist/admin/index.mjs",
"require": "./dist/admin/index.js",
"default": "./dist/admin/index.js"
},
"./strapi-server": {
"source": "./server/src/index.js",
"import": "./dist/server/index.mjs",
"require": "./dist/server/index.js",
"default": "./dist/server/index.js"
}
},
"files": [
"dist",
"strapi-admin.js",
"strapi-server.js",
"scripts/geoip-updater.cjs",
"scripts/update-geoip-db.mjs",
"README.md",
"LICENSE",
"CHANGELOG.md",
"pics"
],
"engines": {
"node": ">=20.0.0 <=26.x.x",
"npm": ">=6.0.0"
},
"scripts": {
"clean": "node -e \"require('fs').rmSync('dist', { recursive: true, force: true })\"",
"test": "node --test tests/*.test.js tests/*.test.mjs",
"build": "npm run clean && strapi-plugin build && node scripts/build-server-bundle.mjs",
"watch": "strapi-plugin watch",
"watch:link": "strapi-plugin watch:link",
"geoip:update": "node scripts/update-geoip-db.mjs",
"verify": "strapi-plugin verify",
"verify:runtime": "node scripts/verify-server-bundle.mjs",
"prepublishOnly": "npm test && npm run build && npm run verify && npm run verify:runtime"
},
"dependencies": {
"@maxmind/geoip2-node": "^6.3.4",
"sanitize-html": "^2.17.5"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.8",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.1",
"@strapi/design-system": "^2.2.0",
"@strapi/icons": "^2.2.0",
"@strapi/sdk-plugin": "^6.1.1",
"@strapi/strapi": "^5.48.1",
"esbuild": "^0.28.1",
"prettier": "^3.8.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-intl": "^7.1.14",
"react-router-dom": "^6.30.4",
"semantic-release": "^25.0.5",
"styled-components": "^6.4.2"
},
"peerDependencies": {
"@strapi/design-system": "^2.0.0",
"@strapi/icons": "^2.0.0",
"@strapi/strapi": "^5.0.0",
"@strapi/utils": "^5.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-intl": "^7.0.0",
"react-router-dom": "^6.0.0",
"styled-components": "^6.0.0"
},
"publishConfig": {
"access": "public"
},
"strapi": {
"kind": "plugin",
"name": "magic-sessionmanager",
"displayName": "Magic Sessionmanager",
"description": "Advanced session management for Strapi v5 - Track user login/logout, session history, and online status"
},
"name": "strapi-plugin-magic-sessionmanager",
"description": "Advanced Session Management for Strapi v5 - Track user sessions with IP geolocation, security scoring, and real-time monitoring",
"license": "MIT",
"author": "Schero D.",
"repository": {
"type": "git",
"url": "https://github.com/Schero94/Magic-Sessionmanager.git"
},
"bugs": {
"url": "https://github.com/Schero94/Magic-Sessionmanager/issues"
},
"homepage": "https://github.com/Schero94/Magic-Sessionmanager#readme",
"private": false
}