forked from streetsidesoftware/cspell-dicts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.66 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": "@cspell/dict-ru_ru",
"version": "2.1.0",
"description": "Russian dictionary for cspell.",
"publishConfig": {
"access": "public"
},
"exports": {
".": "./cspell-ext.json",
"./cspell": "./cspell-ext.json",
"./cspell-ext.json": "./cspell-ext.json"
},
"scripts": {
"build": "cspell-tools-cli build",
"sync": "pnpm cpy \"node_modules/dictionary-ru/**\" src/hunspell",
"conditional-build": "pnpm run sync && pnpm run build --conditional",
"test-ru_ru": "hunspell-reader words -n 1000 \"src/ru_ru.dic\" | cspell -v -c ./cspell-ext.json --local=ru --languageId=* stdin",
"test-russian": "hunspell-reader words -n 1000 \"src/Russian.dic\" | cspell -v -c ./cspell-ext.json --local=ru --languageId=* stdin",
"test-samples": "cspell -v -c ./cspell-ext.json --local=ru,en \"samples/**\"",
"test": "pnpm run test-ru_ru && pnpm run test-russian && pnpm run test-samples",
"prepare:dictionary": "cspell-tools-cli gzip \"*.trie\"",
"prepublishOnly": "pnpm run conditional-build && pnpm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/streetsidesoftware/cspell-dicts.git"
},
"keywords": [
"cspell",
"cspell-ext",
"ru_RU",
"Russian",
"dictionary",
"spelling"
],
"author": "Jason Dent",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/streetsidesoftware/cspell-dicts/issues"
},
"homepage": "https://github.com/streetsidesoftware/cspell-dicts/blob/main/dictionaries/ru_RU#readme",
"files": [
"LICENSE.*",
"ru_ru.trie.gz",
"src/hunspell/license",
"cspell-ext.json"
],
"devDependencies": {
"dictionary-ru": "^2.1.0"
}
}