forked from formfcw/directus-extension-flexible-editor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
102 lines (102 loc) · 3.18 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
{
"name": "directus-extension-flexible-editor",
"version": "1.1.5",
"description": "A Rich Text Editor (WYSIWYG) with JSON output, that allows to integrate M2A relations to make it extremely flexible.",
"license": "GPL-3.0",
"author": "formfcw",
"repository": {
"type": "git",
"url": "https://github.com/formfcw/directus-extension-flexible-editor"
},
"icon": "extension",
"keywords": [
"directus",
"directus-extension",
"directus-custom-bundle",
"directus-custom-interface",
"directus-custom-display",
"wysiwg",
"rich-text",
"rich-text-editor",
"editor",
"block-editor",
"node-editor",
"json-editor",
"flexible-editor",
"flexible-content",
"m2a-editor",
"tiptap",
"prosemirror"
],
"type": "module",
"directus:extension": {
"host": "^10.1.6",
"type": "bundle",
"path": {
"app": "dist/app.js",
"api": "dist/api.js"
},
"entries": [
{
"type": "interface",
"name": "interface",
"source": "src/interface/index.ts"
},
{
"type": "display",
"name": "display",
"source": "src/display/index.ts"
}
]
},
"files": [
"dist",
"content",
"shared"
],
"scripts": {
"build-publish": "directus-extension build && npm publish",
"build": "directus-extension build",
"dev": "directus-extension build -w --no-minify",
"link": "directus-extension link",
"add": "directus-extension add"
},
"devDependencies": {
"@directus/extensions-sdk": "^10.1.6",
"@directus/utils": "^10.0.7",
"@tiptap/pm": "^2.1.8",
"@tiptap/vue-3": "^2.1.8",
"@types/lodash": "^4.14.195",
"@types/uuid": "^9.0.2",
"lodash": "^4.17.21",
"typescript": "^5.1.3",
"uuid": "^9.0.0",
"validator": "^13.9.0",
"vue": "^3.3.4",
"vue-i18n": "^9.4.0"
},
"dependencies": {
"@tiptap/core": "^2.1.8",
"@tiptap/extension-blockquote": "^2.1.8",
"@tiptap/extension-bold": "^2.1.8",
"@tiptap/extension-bullet-list": "^2.1.8",
"@tiptap/extension-code": "^2.1.8",
"@tiptap/extension-code-block": "^2.1.8",
"@tiptap/extension-document": "^2.1.8",
"@tiptap/extension-dropcursor": "^2.1.8",
"@tiptap/extension-gapcursor": "^2.1.8",
"@tiptap/extension-hard-break": "^2.1.8",
"@tiptap/extension-heading": "^2.1.8",
"@tiptap/extension-history": "^2.1.8",
"@tiptap/extension-horizontal-rule": "^2.1.8",
"@tiptap/extension-italic": "^2.1.8",
"@tiptap/extension-link": "^2.1.8",
"@tiptap/extension-list-item": "^2.1.8",
"@tiptap/extension-ordered-list": "^2.1.8",
"@tiptap/extension-paragraph": "^2.1.8",
"@tiptap/extension-placeholder": "^2.1.8",
"@tiptap/extension-strike": "^2.1.8",
"@tiptap/extension-text": "^2.1.8",
"tiptap-render-view": "^1.0.2"
}
}