-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
executable file
·110 lines (110 loc) · 3.2 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
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
{
"name": "strapi-plugin-editorjs-field",
"version": "1.1.9",
"description": "You can extend the capabilities of strapi.io by incorporating a custom field utilizing the EditorJs editor.",
"keywords": [
"strapi",
"plugin",
"editorjs",
"custom-field"
],
"homepage": "https://market.strapi.io/strapi-plugin-editorjs-field",
"bugs": {
"url": "https://github.com/spalz/strapi-plugin-editorjs-field/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/spalz/strapi-plugin-editorjs-field.git"
},
"license": "MIT",
"author": {
"name": "Repin Yuriy",
"email": "[email protected]",
"url": "https://dangercactus.io"
},
"exports": {
"./strapi-admin": {
"types": "./dist/admin/src/index.d.ts",
"source": "./admin/src/index.ts",
"import": "./dist/admin/index.mjs",
"require": "./dist/admin/index.js",
"default": "./dist/admin/index.js"
},
"./strapi-server": {
"types": "./dist/server/src/index.d.ts",
"source": "./server/src/index.ts",
"import": "./dist/server/index.mjs",
"require": "./dist/server/index.js",
"default": "./dist/server/index.js"
},
"./package.json": "./package.json"
},
"files": [
"./dist",
"strapi-server.js"
],
"scripts": {
"build": "tsc -p tsconfig.server.json",
"develop": "tsc -p tsconfig.server.json -w"
},
"dependencies": {
"@editorjs/attaches": "^1.3.0",
"@editorjs/checklist": "^1.6.0",
"@editorjs/code": "^2.9.0",
"@editorjs/delimiter": "^1.4.0",
"@editorjs/editorjs": "^2.28.2",
"@editorjs/embed": "^2.7.0",
"@editorjs/header": "^2.8.1",
"@editorjs/image": "^2.9.0",
"@editorjs/inline-code": "^1.5.0",
"@editorjs/link": "^2.6.2",
"@editorjs/list": "^1.9.0",
"@editorjs/marker": "^1.4.0",
"@editorjs/paragraph": "^2.11.3",
"@editorjs/quote": "^2.6.0",
"@editorjs/raw": "^2.5.0",
"@editorjs/table": "^2.3.0",
"@editorjs/warning": "^1.4.0",
"@strapi/design-system": "^1.18.0",
"@strapi/helper-plugin": "^4.24.4",
"@strapi/icons": "^1.18.0",
"@strapi/utils": "^4.24.4",
"@types/open-graph-scraper": "4.3.0",
"axios": "^1.5.0",
"classnames": "^2.3.2",
"editorjs-component-selector": "^0.0.4",
"get-file-object-from-local-path": "^1.0.2",
"open-graph-scraper": "4.9.2",
"react-intl": "^6.5.5",
"strapi-typed": "^1.0.16",
"tslint-config-prettier": "^1.18.0"
},
"devDependencies": {
"@strapi/strapi": "^4.24.4",
"@types/styled-components": "^5.1.34",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.23.1",
"styled-components": "^6.1.1",
"typescript": "^5.4.5"
},
"peerDependencies": {
"@strapi/strapi": "^4.4.0",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0",
"react-router-dom": "^5.2.0",
"styled-components": "^5.2.1"
},
"engines": {
"node": ">=18.0.0 <=21.x.x",
"npm": ">=6.0.0"
},
"strapi": {
"icon": "plug",
"name": "editorjs",
"displayName": "EditorJS",
"description": "You can extend the capabilities of strapi.io by incorporating a custom field utilizing the EditorJs editor.",
"required": true,
"kind": "plugin"
}
}