cspell-grammar
Version:
Grammar parsing support for cspell
93 lines (92 loc) • 2.13 kB
JSON
{
"name": "cspell-grammar",
"publishConfig": {
"access": "public",
"provenance": true
},
"version": "10.0.0",
"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": ">=22.18.0"
},
"dependencies": {
"@cspell/cspell-pipe": "10.0.0",
"@cspell/cspell-types": "10.0.0"
},
"gitHead": "6ddfd576b6bb554a7cb8dba1ab053a0b6ff8021f"
}