grammars
Version:
Library to help you build your own type-safe parsers for any language.
54 lines (53 loc) • 1.3 kB
JSON
{
"name": "grammars",
"version": "0.0.0",
"description": "Library to help you build your own type-safe parsers for any language.",
"type": "module",
"files": [
"dist/",
"README.md"
],
"scripts": {
"build": "tsup",
"lint": "eslint src/",
"format": "eslint --fix src/ ; prettier --write src/",
"test": "vitest run --coverage",
"release": "npm run test && npm run lint && npm run build && release-it"
},
"author": "Vincent Driessen",
"homepage": "https://github.com/nvie/grammars#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nvie/grammars.git"
},
"keywords": [
"abstract",
"concrete",
"syntax",
"tree",
"ast",
"cst",
"parser",
"language",
"tokenizer",
"lexer",
"grammar",
"semantics",
"syntax",
"typescript"
],
"devDependencies": {
"@release-it/keep-a-changelog": "^6.0.0",
"@types/node": "^22.10.7",
"@typescript-eslint/eslint-plugin": "^7.1.0",
"@vitest/coverage-istanbul": "^3.0.2",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"release-it": "^18.1.1",
"tsup": "^8.3.5",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.2"
},
"sideEffects": false
}