-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.27 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
{
"name": "retext-lexrank",
"version": "1.3.1",
"description": "Lexrank algorithm for retextjs",
"license": "MIT",
"keywords": [
"unist",
"retext",
"nlp",
"lexrank",
"salience"
],
"author": "Goran Spasojevic <[email protected]> (https://gorango.me)",
"repository": "https://github.com/gorango/retext-lexrank",
"bugs": "https://github.com/gorango/retext-lexrank/issues",
"sideEffects": false,
"type": "module",
"exports": "./index.js",
"types": "index.d.ts",
"files": [
"lib/",
"index.js",
"index.d.ts"
],
"scripts": {
"dev": "vitest --dir lib",
"test": "vitest run --dir lib",
"coverage": "vitest run --dir lib --coverage",
"build": "tsc --build --clean && tsc --build && type-coverage"
},
"dependencies": {
"nlcst-to-string": "^4.0.0",
"stemmer": "^2.0.1",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@types/nlcst": "^2.0.3",
"@types/node": "^22.5.4",
"@vitest/coverage-v8": "^2.0.5",
"retext-keywords": "^8.0.1",
"retext-latin": "^4.0.0",
"retext-pos": "^5.0.0",
"to-vfile": "^8.0.0",
"type-coverage": "^2.29.1",
"typescript": "^5.5.4",
"unified": "^11.0.5",
"unist-util-select": "^5.1.0",
"vfile": "^6.0.3",
"vitest": "^2.0.5"
}
}