-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
95 lines (95 loc) · 2.56 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
{
"name": "strapi-code-editor-custom-field",
"version": "1.0.1",
"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"
],
"exports": {
"./package.json": "./package.json",
"./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"
}
},
"peerDependencies": {
"@strapi/sdk-plugin": "^5.3",
"@strapi/strapi": "^5.8",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"dependencies": {
"@strapi/sdk-plugin": "^5.3.0",
"@monaco-editor/react": "^4.6.0",
"@strapi/design-system": "^2.0.0-rc.14",
"@strapi/icons": "^2.0.0-rc.14",
"monaco-editor": "^0.52.2",
"rxjs": "^7.8.1"
},
"devDependencies": {
"@strapi/strapi": "^5.8.1",
"@strapi/typescript-utils": "^5.8.1",
"@types/react": "^19.0.8",
"@types/styled-components": "^5.1.34",
"prettier": "^3.4.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-intl": "^7.1.5",
"styled-components": "^6.1.14",
"typescript": "5.7.3"
},
"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": ">=18.0.0 <=20.x.x",
"npm": ">=6.0.0"
},
"scripts": {
"build": "strapi-plugin build",
"test:ts:back": "run -T tsc -p server/tsconfig.json",
"test:ts:front": "run -T tsc -p admin/tsconfig.json",
"verify": "strapi-plugin verify",
"watch": "strapi-plugin watch",
"watch:link": "strapi-plugin watch:link"
},
"license": "MIT"
}