-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
68 lines (68 loc) · 1.39 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
{
"name": "vue-quilly",
"version": "1.1.2",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"quill": "^2.0.2",
"vue": "^3.5.13"
},
"devDependencies": {
"@types/node": "^22.10.1",
"@vitejs/plugin-vue": "^5.2.1",
"typescript": "^5.6.3",
"vite": "^6.0.1",
"vite-plugin-dts": "^4.3.0",
"vue-tsc": "^2.1.10"
},
"files": [
"dist",
"src/components/"
],
"author": {
"name": "Oleksandr Shevchuk",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/alekswebnet/vue-quilly.git"
},
"homepage": "https://github.com/alekswebnet/vue-quilly",
"bugs": {
"url": "https://github.com/alekswebnet/vue-quilly/issues"
},
"keywords": [
"quill",
"quill2",
"wysiwyg",
"rich-text",
"html-editor",
"vue3",
"vue",
"vuejs"
],
"main": "./dist/vue-quilly.umd.cjs",
"module": "./dist/vue-quilly.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/vue-quilly.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/vue-quilly.umd.cjs"
}
}
},
"peerDependencies": {
"quill": "^2.0.0",
"vue": "^3.0.0"
}
}