forked from frikinside/vue3-simple-typeahead
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.1 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
{
"name": "vue3-bootstrap-typeahead",
"description": "A simple and lightweight Vue3 typeahead component for Bootstrap 4.x / 5.x that show a suggested list of elements while the user types in",
"version": "1.0.1",
"type": "module",
"private": false,
"author": {
"name": "Massimo Nadalin",
"url": "https://www.devangarde.it"
},
"keywords": [
"vue",
"vuejs",
"typeahead",
"autocomplete",
"bootstrap"
],
"homepage": "https://github.com/Devangarde/vue3-bootstrap-typeahead",
"repository": {
"type": "git",
"url": "https://github.com/devangarde/vue3-bootstrap-typeahead.git"
},
"license":"Apache-2.0",
"scripts": {
"dev": "vite",
"build:demo": "vite build",
"build:package": "vite build --config vite.config.package.js",
"preview": "vite preview"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/vue3-bootstrap-typeahead.js",
"require": "./dist/vue3-bootstrap-typeahead.umd.js"
}
},
"files": [
"dist",
"src/typeahead.*"
],
"dependencies": {
"vue": "^3.5.5"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.1.3",
"vite": "^5.4.5"
}
}