Files
tree-sitter-shellspec/package.json
Ismo Vuorinen d65c6e6ec4 refactor: enhance CI/CD workflows and apply CodeRabbit suggestions
- Convert GitHub Actions from local to inline actions for better maintainability
- Add comprehensive caching for npm dependencies, tree-sitter CLI, and build artifacts
- Fix checkout steps missing in test matrix jobs
- Apply defensive programming in test coverage validation
- Use local tree-sitter CLI via npx instead of global installation
- Update tree-sitter-cli to v0.25.0 for compatibility with tree-sitter-bash
- Add proper tree-sitter field to package.json with grammar metadata
- Fix grammar precedence for Data blocks (#| lines now have higher precedence)
- Standardize dates in memory files to September 12, 2025
- Enhance workflow robustness with dynamic workflow ID resolution
- Improve test file pattern matching and error handling

This commit addresses all CodeRabbit review suggestions and optimizes
GitHub Actions workflows for better performance and reliability.
2026-01-04 15:32:39 +02:00

43 lines
1.3 KiB
JSON

{
"name": "@ivuorinen/tree-sitter-shellspec",
"version": "0.1.0",
"description": "ShellSpec grammar for tree-sitter (extends bash)",
"main": "grammar.js",
"author": "Ismo Vuorinen",
"license": "MIT",
"scripts": {
"generate": "tree-sitter generate",
"test": "tree-sitter test",
"parse": "tree-sitter parse",
"web": "tree-sitter web-ui",
"build": "npm run generate",
"dev": "npm run generate && npm run test",
"dev:watch": "nodemon --watch grammar.js --watch test/ --ext js,txt --exec 'npm run dev'",
"lint": "npx mega-linter-runner",
"lint:yaml": "yamllint .",
"lint:markdown": "markdownlint . --config .markdownlint.json --ignore node_modules --fix",
"precommit": "pre-commit run --all-files",
"clean": "rm -rf src/parser.c src/grammar.json src/node-types.json",
"rebuild": "npm run clean && npm run generate"
},
"tree-sitter": [
{
"scope": "source.shellspec",
"file-types": [
"shellspec"
],
"path": ".",
"grammar-path": "grammar.js",
"highlights": "queries/highlights.scm"
}
],
"dependencies": {
"tree-sitter-bash": "^0.25.0"
},
"devDependencies": {
"markdownlint-cli": "^0.42.0",
"nodemon": "^3.0.1",
"tree-sitter-cli": "^0.25.0"
}
}