-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
48 lines (48 loc) · 1.19 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
{
"name": "nlpo3-nodejs",
"version": "1.0.0",
"description": "Node.js binding for nlpO3 Thai language processing library",
"repository": {
"type": "git",
"url": "https://github.com/PyThaiNLP/nlpo3.git"
},
"keywords": [
"thai",
"tokenizer",
"nlp",
"rust",
"word-segmentation"
],
"author": {
"name": "Thanathip Suntorntip Gorlph",
"url": "https://github.com/Gorlph/"
},
"contributors": [
{
"name": "Arthit Suriiyawongkul",
"url": "https://github.com/bact"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/PyThaiNLP/nlpo3/issues"
},
"homepage": "https://github.com/PyThaiNLP/nlpo3/",
"main": "./nlpo3/rust_mod.node",
"scripts": {
"build": "cargo-cp-artifact -nc ./nlpo3/rust_mod.node -- cargo build --message-format=json-render-diagnostics",
"release": "cargo-cp-artifact -nc ./nlpo3/rust_mod.node -- cargo build --release --message-format=json-render-diagnostics && tsc",
"install": "npm run build",
"test": "cargo test"
},
"devDependencies": {
"cargo-cp-artifact": "^0.1",
"typescript": "^4.3.5"
},
"engines": {
"node": ">= 12.0.0"
},
"files": [
"nlpo3"
]
}