forked from james090500/vue-tagsinput
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.3 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
{
"name": "@nor1c/vue-tagsinput",
"repository": "https://github.com/nor1c/vue-tagsinput",
"version": "3.0.1",
"description": "A simple tags input with typeahead made with Vue 3",
"keywords": [
"vue",
"vuejs",
"tagsinput",
"input",
"tags",
"typeahead",
"autocomplete"
],
"author": "Alexander Zavyalov <alex@voerro.com> (http://voerro.com)",
"contributors": [
{
"name": "James Harrison",
"email": "james@fasttortoise.co.uk",
"url": "https://james090500.com"
},
{
"name": "A. Fauzi",
"email": "ahmad.uji1902@gmail.com",
"url": "https://github.com/nor1c"
}
],
"type": "module",
"files": [
"dist"
],
"main": "./dist/voerro-vue3-tagsinput.umd.js",
"module": "./dist/voerro-vue3-tagsinput.es.js",
"exports": {
".": {
"import": "./dist/voerro-vue3-tagsinput.es.js",
"require": "./dist/voerro-vue3-tagsinput.umd.js"
},
"./dist/style.css": "./dist/style.css"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"license": "MIT",
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"dependencies": {
"vue": "latest"
},
"devDependencies": {
"@vitejs/plugin-vue": "^3.0.0",
"vite": "^3.0.0"
}
}