-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.13 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
{
"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",
"autoprefixer": "^10.4.14",
"eslint": "^8.43.0",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"tailwindcss": "^3.3.2",
"typescript": "^5.1.3",
"vite": "^4.3.9"
},
"dependencies": {
"@msgpack/msgpack": "^3.0.0-beta2",
"@pacote/array": "^0.7.1",
"@pacote/bloom-search": "^0.17.2",
"@pacote/xxhash": "^0.3.1",
"@preact/signals": "^1.1.3",
"@types/lunr": "^2.3.4",
"chalk": "^5.2.0",
"clsx": "^2.0.0",
"elasticlunr": "^0.9.5",
"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"
}
}