-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.15 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
{
"name": "@echogarden/text-segmentation",
"version": "0.1.0",
"description": "A library for multilingual word, phrase and sentence segmentation.",
"author": "Rotem Dan",
"license": "MIT",
"keywords": [
"text segmentation",
"word segmentation",
"word boundary detection",
"phrase segmentation",
"phrase boundary detection",
"sentence segmentation",
"sentence boundary detection"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/echogarden-project/text-segmentation"
},
"bugs": {
"url": "https://github.com/echogarden-project/text-segmentation/issues"
},
"main": "./dist/TextSegmentation.js",
"type": "module",
"files": [
"dist",
"src",
"tsconfig.json",
"LICENSE.md",
"README.md"
],
"scripts": {
"test": "node dist/Test.js"
},
"//dependencies": {
"regexp-composer": "../../regexp-composer"
},
"dependencies": {
"regexp-composer": "^0.1.2"
},
"peerDependencies": {
"@echogarden/icu-segmentation-wasm": "^0.1.0"
},
"peerDependenciesMeta": {
"@echogarden/icu-segmentation-wasm": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^22.10.1"
}
}