-
-
Notifications
You must be signed in to change notification settings - Fork 326
/
Copy pathpackage.json
61 lines (61 loc) · 1.51 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
{
"name": "@orama/plugin-match-highlight",
"version": "3.1.0",
"description": "Orama plugin for search match highlighting",
"keywords": [
"full-text search",
"search",
"fuzzy search",
"typo-tolerant search",
"full-text"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/oramasearch/orama"
},
"bugs": {
"url": "https://github.com/oramasearch/orama"
},
"type": "module",
"sideEffects": false,
"main": "./dist/commonjs.cjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/commonjs.cjs"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "swc --delete-dir-on-start -s -w --extensions .ts,.cts -d dist src",
"build": "swc --delete-dir-on-start --extensions .ts,.cts -d dist src",
"postbuild": "tsc -p . --emitDeclarationOnly && tsc -p tsconfig.cjs.json --emitDeclarationOnly && mv dist/commonjs.js dist/commonjs.cjs && mv dist/commonjs.js.map dist/commonjs.cjs.map",
"test": "exit 0"
},
"dependencies": {
"@orama/orama": "workspace:*"
},
"devDependencies": {
"@swc/cli": "^0.1.59",
"@swc/core": "^1.3.27",
"@types/node": "^20.9.0",
"@types/tap": "^15.0.7",
"c8": "^7.12.0",
"tap": "^18.6.1",
"tsx": "^3.12.2",
"typescript": "^5.0.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"tap": {
"extends": "test/config/tap.yml"
}
}