-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 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
{
"name": "@smodin/fast-text-language-detection",
"version": "0.2.4",
"description": "Language detection with facebook fast-text model",
"homepage": "https://github.com/smodin-io/fast-text-language-detection",
"keywords": [
"language",
"detection",
"fast-text"
],
"main": "dist/my-lib.cjs.js",
"module": "dist/my-lib.esm.js",
"browser": "dist/my-lib.umd.js",
"files": [
"dist"
],
"scripts": {
"install": "npm-install-fetch",
"dev": "rollup -c -w",
"build": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 1"
},
"npm-install-fetch": {
"name": "(@smodin/fast-text-language-detection): FastText LID-176 model",
"input": "https://dl.fbaipublicfiles.com/fasttext/supervised-models/lid.176.bin",
"output": "model/fast-text-lid-model.bin"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.2",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-typescript": "^11.1.0",
"eslint": "^7.26.0",
"rollup": "^2.56.0",
"tslib": "^2.5.0",
"ts-node": "^10.9.1",
"typescript": "^4.2.4"
},
"dependencies": {
"fast-text": "^1.0.3",
"npm-install-fetch": "^1.3.8"
}
}