-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
43 lines (43 loc) · 1.18 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
{
"name": "vue-contenteditable",
"version": "4.1.0",
"scripts": {
"build": "vite build && vue-tsc --declaration --emitDeclarationOnly --outFile dist/vue-contenteditable.js"
},
"author": "Léo Falventin Hauchecorne",
"description": "This plugin provides a `<contenteditable/>` element supporting `v-model`. It also provides some (optional) features, like preventing html input and paste, or new lines.",
"keywords": [
"vue",
"vuejs",
"vue 3",
"vue.js 3",
"contenteditable",
"input",
"vue-contenteditable",
"v-model",
"typescript"
],
"homepage": "https://github.com/hl037/vue-contenteditable#vue-contenteditable",
"bugs": {
"url": "https://github.com/hl037/vue-contenteditable/issues",
"email": "[email protected]"
},
"license": "MIT",
"repository": "github:hl037/vue-contenteditable",
"files": [
"dist/*"
],
"peerDependencies": {
"vue": "^3.2.25"
},
"devDependencies": {
"vue": "^3.2.25",
"@vitejs/plugin-vue": "^2.3.3",
"typescript": "^4.5.4",
"vite": "^2.9.9",
"vue-tsc": "^0.34.7"
},
"type": "module",
"main": "dist/vue-contenteditable.es.js",
"types": "dist/vue-contenteditable.d.ts"
}