forked from strapi-community/strapi-plugin-io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.71 KB
/
package.json
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
{
"$schema": "https://json.schemastore.org/package",
"name": "strapi-plugin-io",
"version": "2.0.6",
"description": "A plugin for Strapi CMS that provides the ability for Socket IO integration",
"scripts": {
"lint": "eslint . --fix",
"format": "prettier --write \"./**/*.{js,json,yml,md}\"",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"author": {
"name": "@ComfortablyCoding",
"url": "https://github.com/ComfortablyCoding"
},
"maintainers": [
{
"name": "@ComfortablyCoding",
"url": "https://github.com/ComfortablyCoding",
"lead": true
},
{
"name": "@hrdunn",
"url": "https://github.com/hrdunn"
}
],
"homepage": "https://github.com/ComfortablyCoding/strapi-plugin-io#readme",
"repository": {
"type": "git",
"url": "https://github.com/ComfortablyCoding/strapi-plugin-io.git"
},
"bugs": {
"url": "https://github.com/ComfortablyCoding/strapi-plugin-io/issues"
},
"dependencies": {
"date-fns": "^3.0.6",
"socket.io": "^4.7.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@strapi/eslint-config": "^0.2.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"prettier": "^3.1.0",
"vitepress": "^1.0.0-rc.29"
},
"peerDependencies": {
"@strapi/strapi": "^4.14.6",
"@strapi/utils": "^4.14.6"
},
"strapi": {
"name": "io",
"displayName": "IO",
"description": "A plugin for Strapi CMS that provides the ability for Socket IO integration",
"kind": "plugin"
},
"engines": {
"node": ">=18.0.0 <=20.x.x",
"npm": ">=6.0.0"
},
"keywords": [
"strapi",
"strapi-plugin",
"plugin",
"strapi plugin",
"socket",
"socket io",
"io"
],
"license": "MIT"
}