-
-
Notifications
You must be signed in to change notification settings - Fork 326
/
Copy pathpackage.json
85 lines (85 loc) · 1.82 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@orama/tokenizers",
"version": "3.0.8",
"type": "module",
"description": "Additional tokenizers for Orama",
"sideEffects": false,
"exports": {
"./japanese": {
"import": {
"types": "./dist/esm/japanese.d.ts",
"default": "./dist/esm/japanese.js"
},
"require": {
"types": "./dist/commonjs/japanese.d.ts",
"default": "./dist/commonjs/japanese.js"
}
},
"./mandarin": {
"import": {
"types": "./dist/esm/mandarin.d.ts",
"default": "./dist/esm/mandarin.js"
},
"require": {
"types": "./dist/commonjs/mandarin.d.ts",
"default": "./dist/commonjs/mandarin.js"
}
},
"./package.json": "./package.json"
},
"dependencies": {
"@orama/orama": "workspace:*"
},
"files": [
"build"
],
"repository": {
"type": "git",
"url": "https://github.com/oramasearch/orama"
},
"bugs": {
"url": "https://github.com/oramasearch/orama"
},
"scripts": {
"build": "tshy",
"test": "tsx ./tests/japanese.test.ts && tsx ./tests/mandarin.test.ts"
},
"keywords": [
"full-text search",
"search",
"fuzzy search",
"typo-tolerant search",
"full-text",
"vector search",
"stemming",
"tokenizers",
"mandarin",
"chinese"
],
"author": {
"name": "Michele Riva",
"email": "[email protected]",
"url": "https://github.com/MicheleRiva",
"author": true
},
"license": "Apache-2.0",
"engines": {
"node": ">= 18.0.0"
},
"tshy": {
"dialects": [
"esm",
"commonjs"
],
"exports": {
"./japanese": "./src/japanese.ts",
"./mandarin": "./src/mandarin.ts",
"./package.json": "./package.json"
}
},
"devDependencies": {
"tap": "^18.6.1",
"tshy": "^3.0.2",
"tsx": "^4.19.2"
}
}