-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
76 lines (76 loc) · 1.74 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
69
70
71
72
73
74
75
76
{
"name": "vue-quilly",
"version": "1.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"quill": "^2.0.2",
"vue": "^3.4.21"
},
"devDependencies": {
"@types/node": "^20.12.7",
"@typescript-eslint/parser": "^7.7.1",
"@vitejs/plugin-vue": "^5.0.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.25.0",
"prettier": "^3.2.5",
"typescript": "^5.2.2",
"vite": "^5.2.14",
"vite-plugin-dts": "^3.8.3",
"vite-plugin-node-polyfills": "^0.21.0",
"vue-tsc": "^2.0.6"
},
"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"
},
"packageManager": "[email protected]+sha256.91452fdfa46234ae447d46d5c4fc4e7e0a7058f90495c4b6f77f8beebbb154e3"
}