-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
59 lines (59 loc) · 1.55 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": "semantic-autocomplete",
"description": "A blazing-fast semantic search React component. Match by meaning, not just by letters. Search as you type without waiting (no debounce needed). Rank by cosine similarity.",
"version": "3.1.0",
"homepage": "https://mihaiii.github.io/semantic-autocomplete/",
"type": "module",
"main": "dist/semantic-autocomplete.umd.js",
"module": "dist/semantic-autocomplete.es.js",
"scripts": {
"deploy": "gh-pages -d ghpages",
"dev": "vite",
"build": "vite build",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"repository": {
"type": "git",
"url": "https://github.com/Mihaiii/semantic-autocomplete.git"
},
"files": [
"dist/*",
"README.md",
"LICENSE"
],
"dependencies": {
"@emotion/styled": "^11.11.0",
"@mui/material": ">=5.15.12",
"@xenova/transformers": "^2.16.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.2.56",
"@types/react-dom": "^18.2.19",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"gh-pages": "^6.1.1",
"vite": "^5.1.4"
},
"keywords": [
"semantic",
"search",
"nlp",
"cosine",
"similarity",
"react",
"component",
"autocomplete",
"mui",
"material",
"ui",
"materialui"
],
"author": "Mihai Chirculescu",
"license": "MIT"
}