-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
44 lines (44 loc) · 1.09 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
{
"name": "ndx",
"version": "2.0.1",
"type": "module",
"sideEffects": false,
"exports": {
".": "./dist/index.js",
"./query": "./dist/query.js"
},
"description": "Lightweight Full-Text Indexing and Searching Library.",
"scripts": {
"prepublishOnly": "npm run clean && npm run dist",
"dist": "tsc -b --pretty",
"clean": "tsc -b --clean --pretty",
"ts:watch": "tsc -b -w --pretty",
"ts:force": "tsc -b --force --pretty",
"test": "node --enable-source-maps --test",
"test:only": "node --enable-source-maps --test-only --test"
},
"files": [
"dist",
"src",
"!dist/**/*.tsbuildinfo",
"!src/**/__tests__",
"README.md",
"LICENSE"
],
"devDependencies": {
"typescript": "^4.9.5"
},
"license": "MIT",
"keywords": [
"text",
"full-text",
"index",
"inverted-index",
"search",
"relevance"
],
"author": "Boris Kaul <localvoid@gmail.com> (https://github.com/localvoid)",
"homepage": "https://github.com/localvoid/ndx",
"bugs": "https://github.com/localvoid/ndx/issues",
"repository": "github:localvoid/ndx"
}