-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.22 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
52
53
54
{
"name": "stemin",
"version": "0.1.2",
"description": "Indonesian language stemmer with Levenshtein distance based on ariaghora/mpstemmer and damzaky/sastrawijs",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"browser": "./dist/index.global.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"prepack": "tsup",
"bench": "vitest bench --run",
"bench:watch": "vitest bench",
"test": "vitest run",
"test:watch": "vitest watch",
"lint": "tsc --noEmit"
},
"keywords": [
"natural-language-processing",
"information-retrieval",
"text-analysis",
"tokenizer",
"stemmer",
"nlp",
"bahasa",
"indonesia"
],
"author": "sglkc",
"license": "MIT",
"repository": "github:miseya/stemin",
"bugs": {
"url": "https://github.com/miseya/stemin/issues"
},
"homepage": "https://github.com/miseya/stemin",
"devDependencies": {
"sastrawijs": "^1.1.0",
"tsup": "^8.3.5",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
},
"dependencies": {
"fastest-levenshtein": "^1.0.16"
}
}