Skip to content

Commit

Permalink
Update dependencies and tree-sitter config
Browse files Browse the repository at this point in the history
  • Loading branch information
tgross35 committed Jan 3, 2024
1 parent 2a2b57e commit 3147d56
Showing 1 changed file with 17 additions and 6 deletions.
23 changes: 17 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"main": "grammar.js",
"scripts": {
"test": "tree-sitter test",
"gen": "tree-sitter generate"
"gen": "tree-sitter generate",
"lint": "eslint grammar.js"
},
"repository": {
"type": "git",
Expand All @@ -20,21 +21,31 @@
"author": "Anshuman Medhi",
"license": "MIT",
"dependencies": {
"nan": "^2.14.2",
"tree-sitter": "^0.19.0"
"nan": "^2.18.0",
"tree-sitter": "^0.20.6"
},
"devDependencies": {
"tree-sitter-cli": "^0.19.3"
"tree-sitter-cli": "^0.20.8",
"eslint": "^8.56.0",
"eslint-config-google": "^0.14.0"
},
"tree-sitter": [
{
"file-types": [
"just"
"just",
".just",
"justfile",
"JUSTFILE",
"Justfile",
".justfile",
".JUSTFILE",
".Justfile"
],
"highlights": [
"queries/highlights.scm"
],
"injection-regex": "^(just)$",
"first-line-regex": "#!\\S*bin\\S*[/ ]just",
"injection-regex": "^(?i)just(file)?$",
"locals": [
"queries/locals.scm"
],
Expand Down

0 comments on commit 3147d56

Please sign in to comment.