-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.3 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.3 KB
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
{
"name": "vue-predictive-search",
"author": "Ansima Elvis",
"repository": {
"type": "git",
"url": "https://github.com/ElvisAns/VuePredictiveSearch"
},
"license": "MIT",
"version": "1.0.7",
"description": "The most flexible search component for vuejs applications with auto suggestion and fuzzy search feature",
"main": "./dist/vue-predictive-search.umd.cjs",
"module": "./dist/vue-predictive-search.js",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"test": "vitest run"
},
"exports": {
".": {
"import": "./dist/vue-predictive-search.js",
"require": "./dist/vue-predictive-search.umd.cjs"
}
},
"files": [
"dist"
],
"keywords": [
"vuejs search component",
"vue auto-suggestion",
"vue3"
],
"dependencies": {
"minisearch": "^6.3.0",
"short-unique-id": "^5.0.3",
"vue": "^3.3.11"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.5.2",
"@vue/test-utils": "^2.4.4",
"jsdom": "^24.0.0",
"vite": "^5.0.8",
"vite-plugin-dts": "^3.7.2",
"vitest": "^1.2.2"
},
"peerDependencies": {
"vue": "^3.3.11"
}
}