-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.32 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "clientside-search",
"version": "1.8.1",
"type": "module",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"description": "A highly efficient, isomorphic, full-featured, multilingual text search engine library, providing full-text search, fuzzy matching, phonetic scoring, document indexing and more, with micro JSON state hydration/dehydration in-browser and server-side.",
"keywords": [
"search-engine",
"full-text-search",
"text-processing",
"document-indexing",
"fuzzy-matching",
"multilingual",
"BM25",
"n-gram",
"multi-gram",
"TF-IDF",
"BK-Tree",
"state-hydration",
"state-dehydration",
"Damerau-Levenshtein-distance",
"document-search",
"natural-language-processing",
"text-analytics",
"text-search",
"information-retrieval",
"language-detection"
],
"repository": {
"url": "git+https://github.com/kyr0/clientside-search.git",
"type": "git"
},
"scripts": {
"test": "NODE_OPTIONS='--experimental-vm-modules --enable-source-maps --no-warnings' jest --verbose --coverage ./test/*.test.ts ./test/**/*.test.ts",
"clean": "rm -rf ./dist && rm -rf ./coverage",
"prebuild": "yarn clean",
"build": "yarn node --enable-source-maps ./build.mjs",
"lint": "prettier --check .",
"lint:fix": "prettier --write .",
"precli": "yarn build",
"cli": "yarn node --enable-source-maps ./dist/cli.esm.js clientsidesearch --foo X",
"gen-testdata": "yarn node --enable-source-maps ./genTestData.mjs"
},
"author": "Aron Homberg <[email protected]>",
"sideEffects": false,
"exports": {
".": {
"require": "./dist/index.cjs.js",
"import": "./dist/index.esm.js",
"types": "./dist/index.d.ts"
},
"./language-detect": {
"require": "./dist/language-detect.cjs.js",
"import": "./dist/language-detect.esm.js",
"types": "./dist/language-detect.esm.d.ts"
},
"./en": {
"require": "./dist/en.cjs.js",
"import": "./dist/en.esm.js",
"types": "./dist/en.esm.d.ts"
},
"./de": {
"require": "./dist/de.cjs.js",
"import": "./dist/de.esm.js",
"types": "./dist/de.esm.d.ts"
},
"./fr": {
"require": "./dist/fr.cjs.js",
"import": "./dist/fr.esm.js",
"types": "./dist/fr.esm.d.ts"
},
"./es": {
"require": "./dist/es.cjs.js",
"import": "./dist/es.esm.js",
"types": "./dist/es.esm.d.ts"
},
"./ja": {
"require": "./dist/ja.cjs.js",
"import": "./dist/ja.esm.js",
"types": "./dist/ja.esm.d.ts"
},
"./phonetic": {
"require": "./dist/phonetic.cjs.js",
"import": "./dist/phonetic.esm.js",
"types": "./dist/phonetic.esm.d.ts"
},
"./stem": {
"require": "./dist/stem.cjs.js",
"import": "./dist/stem.esm.js",
"types": "./dist/stem.esm.d.ts"
}
},
"module": "./dist/index.esm.js",
"main": "./dist/index.cjs.js",
"types": "./dist/index.esm.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@jsheaven/easybuild": "^1.2.9",
"@types/jest": "^29.5.3",
"gzip-size": "^7.0.0",
"husky": "^8.0.3",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"prettier": "^2.8.8",
"pretty-bytes": "^6.1.0",
"ts-jest": "^29.0.0-next.1",
"typescript": "^4.9.5",
"wikipedia-tldr": "^2.0.1"
}
}