forked from streetsidesoftware/cspell-dicts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.76 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
57
{
"name": "@cspell/dict-en-au",
"version": "1.0.20",
"description": "Australian 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": "pnpm run compile",
"sync": "pnpm cpy \"node_modules/aoo-mozilla-en-dict/en_AU*/**\" \"src/aoo-mozilla-en-dict\" --flat && pnpm sync-clean",
"sync-clean": "shx rm -rf \"src/*/wordlist*.txt\" \"src/*/*speller*.txt\"",
"compile": "pnpm run sync && cspell-tools-cli build",
"conditional-build": "pnpm run sync && cspell-tools-cli build --conditional && pnpm gz",
"gz": "cspell-tools-cli gzip \"*.trie\"",
"prepare:dictionary": "pnpm gz",
"prepublishOnly": "echo pre-publish",
"test-text": "cspell -c ./cspell-ext.json --locale=en-au --languageId=* \"tests/*.txt\"",
"test": "pnpm run test-text"
},
"repository": {
"type": "git",
"url": "https://github.com/streetsidesoftware/cspell-dicts",
"directory": "dictionaries/en_AU"
},
"keywords": [
"cspell",
"cspell-ext",
"en_AU",
"en-AU",
"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_AU#readme",
"files": [
"en_AU.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"
}
}