-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.52 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.52 KB
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
{
"name": "eld",
"version": "2.0.3",
"description": "Fast and accurate natural language detection. Detector written in Javascript. Efficient language detector, Nito-ELD, ELD.",
"main": "src/entries/dynamic.js",
"type": "module",
"types": "index.d.ts",
"files": [
"src",
"index.d.ts",
"LICENSE",
"README.md"
],
"exports": {
".": {
"import": "./src/entries/dynamic.js",
"types": "./index.d.ts"
},
"./large": {
"import": "./src/entries/static.large.js",
"types": "./index.d.ts"
},
"./medium": {
"import": "./src/entries/static.medium.js",
"types": "./index.d.ts"
},
"./small": {
"import": "./src/entries/static.small.js",
"types": "./index.d.ts"
},
"./extrasmall": {
"import": "./src/entries/static.extrasmall.js",
"types": "./index.d.ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/nitotm/efficient-language-detector-js.git"
},
"keywords": [
"nlp",
"language",
"natural-language-processing",
"natural-language",
"language-detection",
"language-detector",
"language-identification",
"frontend",
"front-end",
"backend"
],
"author": {
"name": "Nito T.M.",
"url": "https://github.com/nitotm"
},
"funding": "https://linktr.ee/nitotm",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nitotm/efficient-language-detector-js/issues"
},
"homepage": "https://github.com/nitotm/efficient-language-detector-js#readme"
}