-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
69 lines (69 loc) · 1.66 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
{
"name": "strapi-code-editor-custom-field",
"version": "0.6.0",
"description": "Code editor plugin for strapi CMS. It uses the monaco editor (vscode).",
"strapi": {
"name": "strapi-code-editor-custom-field",
"description": "Code editor plugin for strapi CMS. It uses the monaco editor (vscode).",
"kind": "plugin",
"displayName": "Code editor plugin"
},
"keywords": [
"strapi",
"@strapi",
"strapi plugin",
"strapi custom field",
"strapi code editor",
"strapi monaco editor",
"strapi vscode editor"
],
"peerDependencies": {
"@strapi/strapi": "^4.10"
},
"dependencies": {
"@monaco-editor/react": "^4.5.1",
"@strapi/design-system": "^1.8.2",
"@strapi/icons": "^1.8.2",
"monaco-editor": "^0.40.0",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@strapi/strapi": "^4.12.0",
"@types/react": "^18.2.17",
"@types/styled-components": "^5.1.26",
"prettier": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intl": "^6.4.4",
"typescript": "5.1.6"
},
"author": {
"name": "Tomasz Pilch",
"email": "[email protected]",
"url": "https://github.com/TomaszPilch"
},
"files": [
"dist/*",
"package.json",
"README.md",
"yarn.lock",
"LICENSE",
"strapi-admin.js",
"strapi-server.js",
"images"
],
"repository": {
"type": "git",
"url": "https://github.com/TomaszPilch/strapi-code-editor-custom-field.git"
},
"engines": {
"node": ">=14.19.1 <=18.x.x",
"npm": ">=6.0.0"
},
"scripts": {
"develop": "tsc -w",
"build": "tsc -p tsconfig.json",
"watch": "tsc -p tsconfig.json --watch"
},
"license": "MIT"
}