-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.17 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.17 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
116
117
118
119
120
121
{
"$schema": "https://json.schemastore.org/package",
"name": "@strapi-community/plugin-io",
"version": "5.3.2",
"description": "A plugin for Strapi CMS that provides the ability for Socket IO integration",
"keywords": [
"strapi",
"strapi-plugin",
"plugin",
"strapi plugin",
"socket",
"socket io",
"io"
],
"type": "commonjs",
"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/index.js",
"import": "./dist/server/index.mjs",
"require": "./dist/server/index.js",
"default": "./dist/server/index.js"
}
},
"files": [
"dist",
"types.d.ts",
"README.md"
],
"scripts": {
"build": "strapi-plugin build",
"watch": "strapi-plugin watch",
"watch:link": "strapi-plugin watch:link",
"verify": "strapi-plugin verify",
"lint": "eslint . --fix",
"format": "prettier --write \"./**/*.{js,json,yml,md}\""
},
"dependencies": {
"date-fns": "^3.6.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.2",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@strapi/design-system": "^2.0.2",
"@strapi/icons": "^2.0.2",
"@strapi/sdk-plugin": "^5.3.2",
"@strapi/strapi": "^5.33.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"prettier": "^3.7.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.30.2",
"semantic-release": "^24.2.3",
"styled-components": "^6.1.19"
},
"peerDependencies": {
"@strapi/design-system": "^2.0.0-rc.1",
"@strapi/icons": "^2.0.0-rc.1",
"@strapi/strapi": "^5.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-router-dom": "^6.0.0",
"styled-components": "^6.0.0"
},
"peerDependenciesMeta": {
"@strapi/design-system": {
"optional": true
},
"@strapi/icons": {
"optional": true
}
},
"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 <=22.x.x",
"npm": ">=6.0.0"
},
"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/strapi-community/plugin-io#readme",
"repository": {
"type": "git",
"url": "https://github.com/strapi-community/plugin-io.git"
},
"bugs": {
"url": "https://github.com/strapi-community/plugin-io/issues"
},
"license": "MIT"
}