mirror of https://github.com/Wilfred/difftastic/
49 lines
1019 B
JSON
49 lines
1019 B
JSON
{
|
|
"name": "@muniftanjim/tree-sitter-lua",
|
|
"version": "0.0.19",
|
|
"description": "Lua grammar for tree-sitter",
|
|
"repository": "tree-sitter-grammars/tree-sitter-lua",
|
|
"author": "Munif Tanjim (https://muniftanjim.dev)",
|
|
"license": "MIT",
|
|
"main": "bindings/node",
|
|
"types": "bindings/node",
|
|
"keywords": [
|
|
"incremental",
|
|
"parsing",
|
|
"tree-sitter",
|
|
"lua"
|
|
],
|
|
"files": [
|
|
"grammar.js",
|
|
"binding.gyp",
|
|
"types/dsl.d.ts",
|
|
"bindings/node/*",
|
|
"queries/**",
|
|
"src/**"
|
|
],
|
|
"dependencies": {
|
|
"node-addon-api": "^7.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"tree-sitter-cli": "^0.21.0"
|
|
},
|
|
"scripts": {
|
|
"build": "tree-sitter generate --no-bindings",
|
|
"test": "tree-sitter test"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"tree-sitter": [
|
|
{
|
|
"scope": "source.lua",
|
|
"highlights": "queries/highlights.scm",
|
|
"injections": "queries/injections.scm",
|
|
"tags": "queries/tags.scm",
|
|
"file-types": [
|
|
"lua"
|
|
]
|
|
}
|
|
]
|
|
}
|