forked from streetsidesoftware/cspell-dicts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.65 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
{
"name": "@cspell/dict-en-ca",
"version": "1.0.6",
"description": "Canadian English dictionary for cspell.",
"publishConfig": {
"access": "public"
},
"exports": {
".": "./cspell-ext.json",
"./cspell": "./cspell-ext.json",
"./cspell-ext.json": "./cspell-ext.json"
},
"scripts": {
"build": "pnpm run compile && pnpm gz",
"sync": "pnpm cpy \"node_modules/aoo-mozilla-en-dict/en_CA*/**\" \"src/aoo-mozilla-en-dict\" --flat && pnpm sync-clean",
"sync-clean": "shx rm -rf \"src/*/wordlist*.txt\" \"src/*/*speller*.txt\"",
"compile": "cspell-tools-cli build",
"conditional-build": "pnpm run sync && pnpm compile --conditional && pnpm gz",
"gz": "cspell-tools-cli gzip \"*.trie\"",
"prepare:dictionary": "pnpm gz",
"prepublishOnly": "echo pre-publish",
"test-text": "cspell -v -c ./cspell-ext.json --local=en-ca --languageId=* \"tests/*.txt\"",
"test": "pnpm run test-text"
},
"repository": {
"type": "git",
"url": "git+https://github.com/streetsidesoftware/cspell-dicts.git"
},
"keywords": [
"cspell",
"cspell-ext",
"en_CA",
"en-CA",
"dictionary",
"spelling"
],
"author": "Jason Dent",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/streetsidesoftware/cspell-dicts/issues"
},
"homepage": "https://github.com/streetsidesoftware/cspell-dicts/blob/main/dictionaries/en_CA#readme",
"files": [
"en_CA.trie",
"cspell-ext.json",
"src/**/README_en_*.txt"
],
"directories": {
"test": "tests"
},
"devDependencies": {
"@cspell/dict-en-shared": "workspace:*",
"aoo-mozilla-en-dict": "github:marcoagpinto/aoo-mozilla-en-dict"
}
}