forked from dodgydre/vuequill
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.02 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
{
"name": "@ohgeorgie/vuequill",
"description": "Vue 3 package for Quill 2.0.0. Forked from vueup/vue-quill",
"license": "MIT",
"author": "Andreas Georghiou",
"repository": {
"type": "git",
"url": "git+https://github.com/dodgydre/vuequill.git"
},
"private": false,
"version": "1.1",
"type": "module",
"files": [
"dist"
],
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js"
}
},
"scripts": {
"dev": "vite && vue-tsc --emitDeclarationOnly",
"build": "vite build && vue-tsc --emitDeclarationOnly",
"preview": "vite preview",
"demo:install": "cd example && npm install",
"demo:dev": "cd example && npm run dev"
},
"dependencies": {
"@types/node": "^20.11.24",
"vue": "^3.4.19"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.4",
"quill": "^2.0.0",
"typescript": "^5.2.2",
"vite": "^5.1.4",
"vue-tsc": "^1.8.27"
},
"keywords": [
"quill, editor, vue, vue3, vuejs"
]
}