You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.7 KiB
53 lines
1.7 KiB
{ |
|
"name": "@cspell/dict-en_us", |
|
"version": "1.2.45", |
|
"description": "English dictionary for cspell.", |
|
"publishConfig": { |
|
"access": "public" |
|
}, |
|
"exports": { |
|
".": "./cspell-ext.json", |
|
"./cspell": "./cspell-ext.json", |
|
"./cspell-ext.json": "./cspell-ext.json" |
|
}, |
|
"scripts": { |
|
"build": "yarn run compile", |
|
"checksum": "shasum -c checksum.txt", |
|
"compile": "cat source-files.txt | xargs cspell-tools compile-trie --merge en_US -o . && yarn run gen-checksum", |
|
"conditional-build": "yarn run --silent checksum || yarn run build", |
|
"test-dict": "hunspell-reader words -n 10000 \"src/hunspell/en_US.dic\" | cspell -v -c ./cspell-ext.json --local=en --languageId=* stdin", |
|
"test-text": "cspell -v -c ./cspell-ext.json --local=en --languageId=* \"tests/*.txt\"", |
|
"gen-checksum": "cat source-files.txt source-dependencies.txt | sort -u | xargs shasum > checksum.txt", |
|
"test": "yarn run test-dict && yarn run test-text", |
|
"prepublishOnly": "yarn test" |
|
}, |
|
"repository": { |
|
"type": "git", |
|
"url": "git+https://github.com/streetsidesoftware/cspell-dicts.git" |
|
}, |
|
"keywords": [ |
|
"cspell", |
|
"en_US", |
|
"English", |
|
"American", |
|
"US English", |
|
"dictionary", |
|
"spelling" |
|
], |
|
"author": "Jason Dent", |
|
"license": "MIT", |
|
"bugs": { |
|
"url": "https://github.com/streetsidesoftware/cspell-dicts/issues" |
|
}, |
|
"homepage": "https://github.com/streetsidesoftware/cspell-dicts/blob/main/dictionaries/en_US#readme", |
|
"files": [ |
|
"en_US.trie.gz", |
|
"cspell-ext.json", |
|
"src/hunspell/README_en_US-large.txt", |
|
"!scripts" |
|
], |
|
"directories": { |
|
"test": "tests" |
|
}, |
|
"gitHead": "ba1fa58d02b4af9fdd27b3408417515511a837fe" |
|
}
|
|
|