-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.25 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.25 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
{
"name": "@bentricode/editor",
"version": "1.10.1",
"private": false,
"publishConfig": {
"access": "public"
},
"description": "Um editor de texto estilo Notion baseado em blocos para Vue 3.",
"author": "Márlon Bento Azevedo (https://github.com/marlon-bento)",
"repository": {
"type": "git",
"url": "https://github.com/bentricode/editor"
},
"license": "ISC",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./style.css": {
"import": "./dist/editor.css",
"require": "./dist/editor.css"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"preview": "vite preview"
},
"peerDependencies": {
"vue": "^3.3.0"
},
"dependencies": {
"@tiptap/extension-code-block-lowlight": "^3.13.0",
"@tiptap/extension-highlight": "^3.13.0",
"@tiptap/extension-image": "^3.13.0",
"@tiptap/extension-paragraph": "^3.13.0",
"@tiptap/extension-placeholder": "^3.13.0",
"@tiptap/extension-text": "^3.13.0",
"@tiptap/extension-text-align": "^3.13.0",
"@tiptap/extension-text-style": "^3.13.0",
"@tiptap/pm": "^3.13.0",
"@tiptap/starter-kit": "^3.13.0",
"@tiptap/suggestion": "^3.13.0",
"@tiptap/vue-3": "^3.13.0",
"highlight.js": "^11.11.1",
"tippy.js": "^6.3.7",
"vue-draggable-next": "^2.1.1",
"vue-i18n": "^11.2.2",
"vue-tippy": "^6.7.1"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.6",
"@semantic-release/npm": "^12.0.2",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/node": "^24.6.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/tsconfig": "^0.8.1",
"sass-embedded": "^1.93.2",
"semantic-release": "^24.2.9",
"typescript": "~5.9.3",
"vite": "^7.1.7",
"vite-plugin-dts": "^4.5.4",
"vue-tsc": "^3.1.0"
},
"keywords": [
"vue",
"vue3",
"tiptap",
"editor",
"wysiwyg",
"rich-text",
"notion-like",
"block-editor",
"drag-drop",
"slash-commands"
]
}