-
-
Notifications
You must be signed in to change notification settings - Fork 214
/
package.json
54 lines (54 loc) · 1.75 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": "@cspell/dict-en-gb-mit",
"version": "2.1.28",
"description": "British English dictionary for cspell with MIT License.",
"publishConfig": {
"access": "public",
"provenance": true
},
"exports": {
".": "./cspell-ext.json",
"./cspell": "./cspell-ext.json",
"./cspell-ext.json": "./cspell-ext.json"
},
"scripts": {
"build": "pnpm run compile",
"checksum": "cspell-tools-cli shasum -c checksum.txt",
"compile": "cspell-tools-cli build && pnpm run gen-checksum",
"conditional-build": "pnpm run --silent checksum || pnpm run build",
"gen-checksum": "cspell-tools-cli shasum -u checksum.txt --list-file source-files.txt source-dependencies.txt",
"prepare:dictionary": "cspell-tools-cli gzip \"*.trie\"",
"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-MIT"
},
"keywords": [
"cspell",
"cspell-ext",
"en_GB",
"dictionary",
"spelling"
],
"author": "Street Side Software <support@streetsidesoftware.nl>",
"license": "MIT",
"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"
],
"directories": {
"test": "tests"
},
"devDependencies": {
"@cspell/dict-en-shared": "workspace:^"
}
}