-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 959 Bytes
/
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-textarea-grow",
"version": "1.0.5",
"description": "Vue 2 directive that handles textarea autogrow.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/nevadavid/vue-textarea-grow.git"
},
"author": "David Uri",
"license": "MIT",
"bugs": {
"url": "https://github.com/nevadavid/vue-textarea-grow/issues"
},
"homepage": "https://nevadavid.github.io/vue-textarea-grow/",
"keywords": [
"typescript",
"vue",
"textarea",
"vue-directive",
"autogrow"
],
"files": [
"dist/**/*"
],
"scripts": {
"dev": "vite",
"build": "tsc",
"prepare": "npm run build",
"serve": "vite preview",
"docs": "vite build",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"typescript": "^4.3.5",
"vite": "^2.4.0",
"vite-plugin-vue2": "^1.7.2",
"vue": "^2.6.14",
"vue-template-compiler": "^2.6.14"
}
}