-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.23 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.23 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
{
"name": "belmorph",
"version": "1.0.1",
"description": "Zero-dependency Belarusian morphological analyzer",
"license": "(MIT AND CC-BY-SA-4.0)",
"author": "Ales Drobysh",
"repository": {
"type": "git",
"url": "git+https://github.com/alesdrobysh/belmorph.git"
},
"homepage": "https://github.com/alesdrobysh/belmorph#readme",
"bugs": {
"url": "https://github.com/alesdrobysh/belmorph/issues"
},
"keywords": [
"belarusian",
"morphology",
"nlp",
"linguistics",
"lemmatizer",
"inflection"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./node": {
"import": "./dist/node-loader.js",
"types": "./dist/node-loader.d.ts"
}
},
"files": [
"dist/",
"dict/"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build:dict": "tsx scripts/build-dict.ts",
"test": "vitest run",
"test:watch": "vitest",
"release": "tsx scripts/release.ts"
},
"devDependencies": {
"@google/genai": "^1.43.0",
"fast-xml-parser": "^5.4.1",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}