-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1009 Bytes
/
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
{
"name": "@echogarden/icu-segmentation-wasm",
"version": "0.1.0",
"description": "WebAssembly port of the ICU library's character, word, line-break, and sentence segmentation methods.",
"author": "Rotem Dan",
"license": "MIT",
"keywords": [
"word segmentation",
"word boundary detection",
"sentence segmentation",
"sentence boundary detection",
"word wrapping"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/echogarden-project/icu-segmentation-wasm"
},
"bugs": {
"url": "https://github.com/echogarden-project/icu-segmentation-wasm/issues"
},
"main": "./dist/Exports.js",
"type": "module",
"files": [
"dist",
"src",
"wasm",
"tsconfig.json",
"LICENSE.md",
"README.md"
],
"scripts": {
"test": "node dist/Test.js"
},
"//dependencies": {
"wasm-heap-manager": "file:../../wasm-heap-manager"
},
"dependencies": {
"wasm-heap-manager": "^0.1.0"
},
"devDependencies": {
"@types/node": "^22.10.0"
}
}