-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.03 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": "@orama/highlight",
"version": "0.1.8",
"description": "Highlight any text in any JavaScript lib (browser, server, React, Vue, you name it!)",
"main": "dist/index.js",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"browser": "./dist/index.global.js"
}
},
"scripts": {
"test": "bun test",
"lint": "ts-standard --fix ./src/**/*.ts",
"build": "npm run build:lib",
"build:lib": "tsup --config tsup.lib.js"
},
"keywords": [
"full-text search",
"search",
"highlight"
],
"author": {
"name": "Michele Riva",
"email": "michele.riva@oramasearch.com"
},
"license": "Apache-2.0",
"devDependencies": {
"@types/react": "^18.2.25",
"@types/sinon": "^10.0.20",
"bun-types": "^1.0.4-canary.20231004T140131",
"react": "^18.2.0",
"sinon": "^17.0.0",
"ts-standard": "^12.0.2",
"tsup": "^7.2.0",
"typescript": "^5.2.2"
}
}