@kitschpatrol/cspell-config
Version:
CSpell configuration for @kitschpatrol/shared-config.
82 lines • 2.11 kB
JSON
{
"name": "@kitschpatrol/cspell-config",
"version": "7.6.2",
"description": "CSpell configuration for @kitschpatrol/shared-config.",
"keywords": [
"shared-config",
"cspell-config",
"cspell",
"cli",
"ksc",
"ksc-cspell"
],
"homepage": "https://github.com/kitschpatrol/shared-config/tree/main/packages/cspell-config",
"bugs": "https://github.com/kitschpatrol/shared-config/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/kitschpatrol/shared-config.git",
"directory": "packages/cspell-config"
},
"license": "MIT",
"author": {
"name": "Eric Mika",
"email": "eric@ericmika.com",
"url": "https://ericmika.com"
},
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"ksc-cspell": "bin/cli.js"
},
"files": [
"bin/*",
"dictionaries/*",
"dist/*",
"init/*"
],
"dependencies": {
"@cspell/cspell-types": "^10.0.0",
"@pinojs/json-colorizer": "^4.0.0",
"case-police": "^2.2.1",
"cosmiconfig": "^9.0.1",
"cosmiconfig-typescript-loader": "^6.3.0",
"cspell": "^10.0.0",
"cspell-lib": "^10.0.0",
"decircular": "^1.0.0",
"deepmerge": "^4.3.1",
"execa": "^9.6.1",
"find-workspaces": "^0.3.1",
"fs-extra": "^11.3.5",
"json-stringify-pretty-compact": "^4.0.0",
"package-up": "^5.0.0",
"picocolors": "^1.1.1",
"prettier": "^3.8.3",
"yargs": "^18.0.0"
},
"devDependencies": {
"globby": "^16.2.0",
"untildify": "^6.0.0"
},
"engines": {
"node": "^22.22.2 || >=24.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"cli": "node ./bin/cli.js",
"find-duplicates": "cat ./dictionaries/*.txt | sort -f | uniq -i -d",
"list-words": "cat ./dictionaries/*.txt",
"sort-dictionaries": "find ./dictionaries -name '*.txt' -execdir sort -f -o {} {} \\;",
"suggest-words": "tsx ./scripts/suggest-words.ts"
}
}