forked from lix-project/lix-website
111 lines
2.8 KiB
JSON
111 lines
2.8 KiB
JSON
{
|
|
"name": "cspell",
|
|
"version": "5.21.2",
|
|
"description": "A Spelling Checker for Code!",
|
|
"funding": "https://github.com/streetsidesoftware/cspell?sponsor=1",
|
|
"main": "dist/index.js",
|
|
"typings": "dist/index.d.ts",
|
|
"bin": {
|
|
"cspell": "bin.js"
|
|
},
|
|
"exports": {
|
|
".": "./dist/index.js",
|
|
"./app": "./dist/app.js",
|
|
"./bin": "./bin.js",
|
|
"./bin.js": "./bin.js",
|
|
"./application": "./dist/application.js",
|
|
"./dist/app": "./dist/app.js",
|
|
"./dist/application": "./dist/application.js"
|
|
},
|
|
"typesVersions": {
|
|
">=4.0": {
|
|
"*": [
|
|
"dist/*",
|
|
"*"
|
|
]
|
|
}
|
|
},
|
|
"files:comment": "Due to a lerna bug, patterns like `!**/*.map` are not getting recursively honored",
|
|
"files": [
|
|
"bin.js",
|
|
"dist",
|
|
"!**/__mocks__",
|
|
"!**/*.test.*",
|
|
"!**/*.spec.*",
|
|
"!**/*.map"
|
|
],
|
|
"scripts": {
|
|
"clean": "rimraf dist coverage .tsbuildinfo",
|
|
"build": "npm run compile && npm run build-api",
|
|
"build-api": "rollup -c rollup.config.mjs",
|
|
"build-dev": "tsc -p tsconfig.dev.json",
|
|
"clean-build": "npm run clean && npm run build",
|
|
"compile": "tsc -p .",
|
|
"watch": "tsc --watch -p .",
|
|
"coverage": "jest --coverage",
|
|
"test-watch": "jest --watch",
|
|
"prepublishOnly": "npm run clean-build && npm test",
|
|
"test": "jest",
|
|
"update-snapshot": "jest --updateSnapshot"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/streetsidesoftware/cspell.git"
|
|
},
|
|
"keywords": [
|
|
"spell",
|
|
"checker",
|
|
"code",
|
|
"camel",
|
|
"case",
|
|
"spelling",
|
|
"spell checker",
|
|
"spelling checker",
|
|
"lint"
|
|
],
|
|
"author": "Jason Dent",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/streetsidesoftware/cspell/issues"
|
|
},
|
|
"homepage": "https://streetsidesoftware.github.io/cspell/",
|
|
"dependencies": {
|
|
"@cspell/cspell-pipe": "^5.21.2",
|
|
"chalk": "^4.1.2",
|
|
"commander": "^9.2.0",
|
|
"cspell-gitignore": "^5.21.2",
|
|
"cspell-glob": "^5.21.2",
|
|
"cspell-lib": "^5.21.2",
|
|
"fast-json-stable-stringify": "^2.1.0",
|
|
"file-entry-cache": "^6.0.1",
|
|
"fs-extra": "^10.1.0",
|
|
"get-stdin": "^8.0.0",
|
|
"glob": "^8.0.3",
|
|
"imurmurhash": "^0.1.4",
|
|
"semver": "^7.3.7",
|
|
"strip-ansi": "^6.0.1",
|
|
"vscode-uri": "^3.0.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=12.13.0"
|
|
},
|
|
"devDependencies": {
|
|
"@cspell/cspell-json-reporter": "^5.21.2",
|
|
"@cspell/cspell-types": "^5.21.2",
|
|
"@types/file-entry-cache": "^5.0.2",
|
|
"@types/fs-extra": "^9.0.13",
|
|
"@types/glob": "^7.2.0",
|
|
"@types/imurmurhash": "^0.1.1",
|
|
"@types/micromatch": "^4.0.2",
|
|
"@types/minimatch": "^3.0.5",
|
|
"@types/semver": "^7.3.9",
|
|
"jest": "^28.1.0",
|
|
"micromatch": "^4.0.5",
|
|
"minimatch": "^5.1.0",
|
|
"rimraf": "^3.0.2",
|
|
"rollup": "^2.74.1",
|
|
"rollup-plugin-dts": "^4.2.1"
|
|
},
|
|
"gitHead": "ce422e9d62a5fbad056c4f82aafcbf98c6a86677"
|
|
}
|