-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.66 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
{
"name": "@mayank1513/vue-tag-input",
"author": "Mayank Kumar Chaudhari <https://mayank-chaudhari.vercel.app>",
"private": false,
"description": "A versatile tag input component built with Vue 3 Composition API",
"version": "1.2.1",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/mayank1513/tag-input.git"
},
"bugs": {
"url": "https://github.com/mayank1513/tag-input/issues"
},
"homepage": "https://mayank1513.github.io/tag-input/",
"license": "MIT",
"scripts": {
"dev": "vite --port 3000 --open",
"build": "rm -rf dist vue-tsc && vite build",
"build:lib": "vite build -c vite-lib.config.ts && vue-tsc --noEmit false --emitDeclarationOnly && node touchup.js",
"preview": "vite preview",
"test": "vitest run --coverage"
},
"dependencies": {
"@mayank1513/vue-tag-input": "latest",
"sass": "^1.66.1",
"vue": "^3.3.4",
"vue-router": "4"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/node": "^20.6.0",
"@vitejs/plugin-vue": "^4.3.4",
"@vitest/coverage-v8": "^0.34.4",
"@vue/test-utils": "^2.4.1",
"changeset": "^0.2.6",
"happy-dom": "^11.0.2",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vitest": "^0.34.4",
"vue-tsc": "^1.8.10"
},
"peerDependencies": {
"vue": "^3"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/mayank1513"
},
"keywords": [
"javascript",
"typescript",
"vue",
"vuejs",
"vuejs3",
"vue 3",
"vue 3 composition api",
"tags",
"vue-tags-input",
"vue-component",
"autocomplete",
"draggable",
"no dependencies"
]
}