@cspell/cspell-tools
Version:
Tools to assist with the development of cSpell
84 lines (83 loc) • 2.18 kB
JSON
{
"name": "@cspell/cspell-tools",
"version": "9.2.1",
"description": "Tools to assist with the development of cSpell",
"publishConfig": {
"access": "public",
"provenance": true
},
"type": "module",
"sideEffects": false,
"bin": {
"cspell-tools": "bin.mjs",
"cspell-tools-cli": "bin.mjs"
},
"scripts": {
"build": "pnpm run build-schema && pnpm run compile",
"build-schema": "ts-json-schema-generator --no-top-ref --path src/config/config.ts --type RunConfig --validation-keywords deprecated -o ./cspell-tools.config.schema.json",
"compile": "tsc -p tsconfig.esm.json",
"watch": "tsc -p tsconfig.esm.json -w",
"clean-build": "pnpm run clean && pnpm run build",
"clean": "shx rm -rf dist temp coverage \"*.tsbuildInfo\"",
"coverage": "vitest run --coverage",
"test:watch": "vitest",
"test": "vitest run",
"update-snapshot": "vitest run -u"
},
"repository": {
"type": "git",
"url": "https://github.com/streetsidesoftware/cspell.git",
"directory": "packages/cspell-tools"
},
"keywords": [
"cSpell",
"Word",
"List",
"Compiler"
],
"exports": {
".": {
"import": "./dist/app.js"
},
"./bin": {
"import": "./bin.mjs"
},
"./bin.mjs": {
"import": "./bin.mjs"
}
},
"files": [
"bin.mjs",
"dist",
"cspell-tools.config.schema.json",
"!**/*.tsbuildInfo",
"!**/__mocks__",
"!**/*.test.*",
"!**/*.spec.*",
"!**/*.map"
],
"author": "Jason Dent",
"license": "MIT",
"bugs": {
"url": "https://github.com/streetsidesoftware/cspell/labels/cspell-tools"
},
"homepage": "https://github.com/streetsidesoftware/cspell/tree/main/packages/cspell-tools#readme",
"dependencies": {
"@cspell/cspell-pipe": "9.2.1",
"commander": "^14.0.0",
"cosmiconfig": "9.0.0",
"cspell-trie-lib": "9.2.1",
"glob": "^10.4.5",
"hunspell-reader": "9.2.1",
"yaml": "^2.8.1"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"lorem-ipsum": "^2.0.8",
"ts-json-schema-generator": "^2.4.0"
},
"module": "bin.mjs",
"gitHead": "3a165c2afd917f4a923c2316f3768eaf18aa3e4b"
}