76 lines
1.6 KiB
JSON
76 lines
1.6 KiB
JSON
{
|
|
"name": "@tree-sitter-grammars/tree-sitter-yaml",
|
|
"version": "0.6.1",
|
|
"license": "MIT",
|
|
"description": "YAML grammar for tree-sitter",
|
|
"repository": "github:tree-sitter-grammars/tree-sitter-yaml",
|
|
"main": "bindings/node",
|
|
"types": "bindings/node",
|
|
"author": {
|
|
"name": "Ika",
|
|
"email": "ikatyang@gmail.com",
|
|
"url": "https://github.com/ikatyang"
|
|
},
|
|
"maintainers": [
|
|
{
|
|
"name": "Amaan Qureshi",
|
|
"email": "amaanq12@gmail.com"
|
|
}
|
|
],
|
|
"keywords": [
|
|
"incremental",
|
|
"parsing",
|
|
"tree-sitter",
|
|
"yaml"
|
|
],
|
|
"files": [
|
|
"grammar.js",
|
|
"binding.gyp",
|
|
"prebuilds/**",
|
|
"bindings/node/*",
|
|
"queries/*",
|
|
"src/**",
|
|
"schema/**"
|
|
],
|
|
"dependencies": {
|
|
"node-addon-api": "^8.0.0",
|
|
"node-gyp-build": "^4.8.0"
|
|
},
|
|
"devDependencies": {
|
|
"prebuildify": "^6.0.1",
|
|
"tree-sitter-cli": "^0.22.5"
|
|
},
|
|
"peerDependencies": {
|
|
"tree-sitter": "^0.21.1"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"tree_sitter": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tree-sitter generate --no-bindings",
|
|
"postbuild": "npm run --prefix schema/core build",
|
|
"test": "tree-sitter test",
|
|
"install": "node-gyp-build",
|
|
"prebuildify": "prebuildify --napi --strip"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"tree-sitter": [
|
|
{
|
|
"scope": "text.yaml",
|
|
"file-types": [
|
|
"yml",
|
|
"yaml"
|
|
],
|
|
"injection-regex": "^ya?ml$",
|
|
"highlights": "queries/highlights.scm",
|
|
"external-files": [
|
|
"src/schema.core.c"
|
|
]
|
|
}
|
|
]
|
|
}
|