-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.63 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
{
"name": "vue-tiptop-editor",
"version": "0.3.0",
"type": "module",
"keywords": [
"vue",
"typescript",
"tiptop",
"rich-text"
],
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"build:component": "node ./scripts/build.js",
"build:lib": "pnpm build:component && copy package.json build && copy README.md build"
},
"dependencies": {
"@tiptap/extension-image": "2.0.0-beta.209",
"@tiptap/starter-kit": "2.0.0-beta.207",
"@tiptap/vue-3": "2.0.0-beta.207",
"prosemirror-commands": "^1.5.0",
"prosemirror-dropcursor": "^1.6.1",
"prosemirror-gapcursor": "^1.3.1",
"prosemirror-history": "^1.3.0",
"prosemirror-keymap": "^1.2.0",
"prosemirror-schema-list": "^1.2.2",
"vue": "^3.2.45"
},
"devDependencies": {
"@vitejs/plugin-vue": "^3.2.0",
"@vitejs/plugin-vue-jsx": "^2.1.1",
"sass": "^1.56.2",
"typescript": "^4.9.4",
"vite": "^3.2.5",
"vite-plugin-dts": "^1.7.1",
"vue-tsc": "^1.0.12"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/James-Zhouj/vue-tiptop-editor.git"
},
"homepage": "https://github.com/James-Zhouj/vue-tiptop-editor/blob/main/README.md",
"bugs": {
"url": "https://github.com/James-Zhouj/vue-tiptop-editor/issues"
},
"main": "vue-tiptop-editor.umd.js",
"module": "vue-tiptop-editor.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/vue-tiptop-editor.js",
"require": "./dist/vue-tiptop-editor.umd.cjs"
},
"./dist/style.css": "./dist/style.css"
},
"files": [
"dist/*"
]
}