-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.67 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
{
"name": "vue-tailwind-wysiwyg-editor",
"version": "1.0.0",
"license": "MIT",
"description": "A simple TailwindCSS Vue WYSIWYG editor.",
"repository": {
"type": "git",
"url": "git+https://github.com/cn-2k/vue-tailwind-wysiwyg-editor.git"
},
"keywords": [
"vue3",
"WYSIWYG",
"wysiwyg",
"tailwind",
"vue",
"vuejs"
],
"main": "./dist/vue-tailwind-editor.js",
"module": "./dist/esm/vue-tailwind-editor.js",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"files": [
"dist",
"package.json",
"README.md",
"global.d.ts"
],
"private": false,
"type": "module",
"scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build --force"
},
"peerDependencies": {
"@tiptap/extension-document": "^2.3.0",
"@tiptap/extension-floating-menu": "^2.3.0",
"@tiptap/extension-placeholder": "^2.3.0",
"@tiptap/extension-task-item": "^2.3.0",
"@tiptap/extension-task-list": "^2.3.0",
"@tiptap/extension-text-align": "^2.3.0",
"@tiptap/extension-underline": "^2.3.0",
"@tiptap/pm": "^2.3.0",
"@tiptap/starter-kit": "^2.3.0",
"@tiptap/vue-3": "^2.3.0",
"@tailwindcss/typography": "^0.5.13",
"vue": "^3.3.10"
},
"devDependencies": {
"@tsconfig/node18": "^18.2.4",
"@types/node": "^18.19.32",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/tsconfig": "^0.5.1",
"npm-run-all2": "^6.1.2",
"typescript": "~5.4.5",
"vite": "^5.2.11",
"vite-plugin-dts": "^3.9.1",
"vue-tsc": "^2.0.16"
},
"dependencies": {
"@vueuse/core": "^10.9.0"
}
}