cspell-grammar
Version:
Grammar parsing support for cspell
96 lines (95 loc) • 2.17 kB
JSON
{
"name": "cspell-grammar",
"publishConfig": {
"access": "public",
"provenance": true
},
"version": "9.1.1",
"description": "Grammar parsing support for cspell",
"keywords": [
"cspell",
"grammar"
],
"author": "Jason Dent <jason@streetsidesoftware.nl>",
"homepage": "https://github.com/streetsidesoftware/cspell/tree/main/packages/cspell-grammar#readme",
"license": "MIT",
"bin": {
"cspell-grammar": "bin.mjs"
},
"type": "module",
"sideEffects": false,
"types": "dist/index.d.ts",
"module": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js"
},
"./parsers/typescript": {
"import": "./dist/parsers/typescript/index.js"
}
},
"typesVersions": {
"*": {
"index.js": [
"dist/index.d.ts"
],
"index.d.ts": [
"dist/index.d.ts"
],
"dist/*.d.ts": [
"dist/*.d.ts"
],
"parsers": [
"dist/parsers/index.d.ts"
],
"parsers/typescript": [
"dist/parsers/typescript/index.d.ts"
],
"parsers/typescript/*.d.ts": [
"dist/parsers/typescript/*.d.ts"
],
"*": [
"dist/*.d.ts",
"dist/*/index.d.ts"
]
}
},
"files": [
"bin.mjs",
"dist",
"!**/*.tsbuildInfo",
"!**/__mocks__",
"!**/test/**",
"!**/*.test.*",
"!**/*.spec.*",
"!**/*.map"
],
"scripts": {
"clean": "shx rm -rf dist temp coverage \"*.tsbuildInfo\"",
"build": "tsc -p .",
"clean-build": "pnpm run clean && pnpm run build",
"coverage": "vitest run --coverage",
"test:watch": "vitest",
"test": "vitest run",
"watch": "tsc -p . -w"
},
"repository": {
"type": "git",
"url": "https://github.com/streetsidesoftware/cspell.git",
"directory": "packages/cspell-grammar"
},
"bugs": {
"url": "https://github.com/streetsidesoftware/cspell/labels/cspell-grammar"
},
"engines": {
"node": ">=20"
},
"devDependencies": {
"jest": "^29.7.0"
},
"dependencies": {
"@cspell/cspell-pipe": "9.1.1",
"@cspell/cspell-types": "9.1.1"
},
"gitHead": "40c6e1a331f38a0c008aacf2cb527270752c35ad"
}