forked from nextapps-de/flexsearch
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.64 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
{
"name": "@akryum/flexsearch-es",
"version": "0.7.32",
"description": "Next-Generation full text search library with zero dependencies.",
"homepage": "https://github.com/Akryum/flexsearch-es/",
"author": "Thomas Wilkerling",
"copyright": "Nextapps GmbH",
"license": "Apache-2.0",
"keywords": [
"fulltext search",
"elastic search",
"fastest search",
"contextual search",
"document search",
"fuzzy search",
"fuzzy match",
"search engine"
],
"bugs": {
"url": "https://github.com/Akryum/flexsearch-es/issues",
"email": "[email protected]"
},
"type": "module",
"main": "./dist/flexsearch.cjs",
"browser": "./dist/flexsearch.browser.js",
"module": "./src/index.js",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./src/index.js",
"require": "./dist/flexsearch.cjs"
},
"./*": "./*"
},
"types": "./index.d.ts",
"preferGlobal": false,
"repository": {
"type": "git",
"url": "https://github.com/Akryum/flexsearch-es.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"copy": "npm run clean && cpx \"src/**\" tmp/",
"clean": "npx shx rm -rf tmp && mkdir tmp",
"build": "npm run copy && npm run build:bundle",
"build:bundle": "node task/build.js",
"test": "cd test && npm install && npm run test",
"server": "node task/server.js"
},
"files": [
"dist/**",
"src/**",
"task/**",
"index.d.ts",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"readme": "README.md",
"devDependencies": {
"cpx": "^1.5.0",
"esbuild": "^0.17.11",
"shx": "^0.3.3",
"web-servo": "^0.5.1"
}
}