-
-
Notifications
You must be signed in to change notification settings - Fork 210
/
package.json
56 lines (56 loc) · 1.83 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
55
56
{
"name": "@cspell/dict-en-gb",
"version": "4.1.52",
"description": "British English dictionary for cspell.",
"publishConfig": {
"access": "public",
"provenance": true
},
"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/aoo-mozilla-en-dict/en_GB*/**\" \"src/aoo-mozilla-en-dict\" --flat && pnpm sync-clean",
"sync-clean": "shx rm -rf \"src/*/wordlist*.txt\" \"src/*/*speller*.txt\"",
"conditional-build": "pnpm run sync && pnpm build --conditional && pnpm gz",
"gz": "cspell-tools-cli gzip \"*.trie\"",
"prepare:dictionary": "pnpm gz",
"prepublishOnly": "echo pre-publish",
"test-dict": "shx head -n 1000 \"./src/wordsEnGb.txt\" | cspell -c ./cspell-ext.json --locale=en_gb --languageId=* stdin",
"test-text": "cspell -c ./cspell-ext.json --locale=en_gb --languageId=* \"tests/*.txt\"",
"test": "pnpm run test-dict && pnpm run test-text"
},
"repository": {
"type": "git",
"url": "https://github.com/streetsidesoftware/cspell-dicts",
"directory": "dictionaries/en_GB"
},
"keywords": [
"cspell",
"cspell-ext",
"en_GB",
"dictionary",
"spelling"
],
"author": "Street Side Software <[email protected]>",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/streetsidesoftware/cspell-dicts/issues"
},
"homepage": "https://github.com/streetsidesoftware/cspell-dicts/blob/main/dictionaries/en_GB#readme",
"files": [
"en_GB.trie.gz",
"cspell-ext.json",
"src/**/README_en_GB.txt"
],
"directories": {
"test": "tests"
},
"devDependencies": {
"@cspell/dict-en-shared": "workspace:^",
"aoo-mozilla-en-dict": "github:marcoagpinto/aoo-mozilla-en-dict"
}
}