-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.18 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.18 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
{
"name": "bloom-search-poc",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"compatibility": "cp compatibility/elasticlunr.js node_modules/elasticlunr/elasticlunr.js",
"dev": "npm run compatibility && vite",
"build": "npm run compatibility && tsc && vite build",
"build:search": "node --experimental-json-modules scripts/search-index.mjs",
"preview": "npm run compatibility && vite preview"
},
"devDependencies": {
"@types/elasticlunr": "^0.9.5",
"@types/lunr": "^2.3.7",
"autoprefixer": "^10.4.14",
"eslint": "^8.43.0",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"tailwindcss": "^3.3.2",
"typescript": "^5.7.3",
"vite": "^4.3.9"
},
"dependencies": {
"@faker-js/faker": "^9.5.0",
"@msgpack/msgpack": "^3.1.0",
"@pacote/array": "^0.9.1",
"@pacote/bloom-search": "^0.17.6",
"@pacote/xxhash": "^0.4.0",
"@preact/signals": "^1.1.3",
"chalk": "^5.2.0",
"clsx": "^2.1.1",
"elasticlunr": "^0.9.5",
"fuse.js": "^7.0.0",
"gzip-size": "^7.0.0",
"lunr": "^2.3.9",
"minisearch": "^6.0.1",
"preact": "^10.15.1",
"stemmer": "^2.0.1",
"stopwords-en": "^0.3.0"
}
}