-
-
Notifications
You must be signed in to change notification settings - Fork 326
/
Copy pathpackage.json
53 lines (53 loc) · 1.18 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
{
"name": "@orama/plugin-pt15",
"version": "3.1.0",
"description": "Performant search algorithm optimized for descriptive texts",
"keywords": [
"orama",
"embeddings",
"secure proxy",
"vector search"
],
"license": "Apache-2.0",
"main": "./dist/index.js",
"type": "module",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"browser": "./dist/index.global.js"
}
},
"bugs": {
"url": "https://github.com/oramasearch/orama/issues"
},
"homepage": "https://github.com/oramasearch/orama#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/oramasearch/orama.git"
},
"sideEffects": false,
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup --config tsup.lib.js",
"lint": "exit 0",
"test": "node --test --import tsx test/*.test.ts"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^20.9.0",
"tap": "^21.0.1",
"tsup": "^7.2.0",
"tsx": "^4.19.1",
"typescript": "^5.0.0"
},
"dependencies": {
"@orama/orama": "workspace:*"
}
}