tree-sitter-yaml/package.json

76 lines
1.6 KiB
JSON
Raw Normal View History

2019-08-31 07:14:13 -04:00
{
2024-03-31 09:45:34 -04:00
"name": "@tree-sitter-grammars/tree-sitter-yaml",
2024-04-30 04:33:53 -04:00
"version": "0.6.1",
2024-03-31 09:45:34 -04:00
"license": "MIT",
2019-08-31 07:14:13 -04:00
"description": "YAML grammar for tree-sitter",
2024-03-31 09:45:34 -04:00
"repository": "github:tree-sitter-grammars/tree-sitter-yaml",
"main": "bindings/node",
2024-03-27 05:31:32 -04:00
"types": "bindings/node",
2019-08-31 07:14:13 -04:00
"author": {
"name": "Ika",
"email": "ikatyang@gmail.com",
"url": "https://github.com/ikatyang"
},
2024-03-31 09:45:34 -04:00
"maintainers": [
{
"name": "Amaan Qureshi",
"email": "amaanq12@gmail.com"
}
2024-03-31 09:45:34 -04:00
],
"keywords": [
"incremental",
"parsing",
"tree-sitter",
"yaml"
],
"files": [
"grammar.js",
"binding.gyp",
"prebuilds/**",
"bindings/node/*",
"queries/*",
"src/**",
"schema/**"
2024-03-31 09:45:34 -04:00
],
2019-08-31 07:14:13 -04:00
"dependencies": {
2024-03-31 09:45:34 -04:00
"node-addon-api": "^8.0.0",
2024-03-27 05:31:32 -04:00
"node-gyp-build": "^4.8.0"
},
2024-03-31 09:45:34 -04:00
"devDependencies": {
2024-04-30 04:33:53 -04:00
"prebuildify": "^6.0.1",
"tree-sitter-cli": "^0.22.5"
2024-03-31 09:45:34 -04:00
},
2024-03-27 05:31:32 -04:00
"peerDependencies": {
2024-03-31 09:45:34 -04:00
"tree-sitter": "^0.21.1"
2024-03-27 05:31:32 -04:00
},
"peerDependenciesMeta": {
"tree_sitter": {
"optional": true
}
2019-08-31 07:14:13 -04:00
},
2024-03-31 09:45:34 -04:00
"scripts": {
"build": "tree-sitter generate --no-bindings",
2024-03-31 15:09:29 -04:00
"postbuild": "npm run --prefix schema/core build",
2024-03-31 09:45:34 -04:00
"test": "tree-sitter test",
"install": "node-gyp-build",
"prebuildify": "prebuildify --napi --strip"
},
"publishConfig": {
"access": "public"
2019-08-31 07:14:13 -04:00
},
2024-03-27 05:31:32 -04:00
"tree-sitter": [
{
2024-03-31 09:45:34 -04:00
"scope": "text.yaml",
"file-types": [
"yml",
"yaml"
],
"injection-regex": "^ya?ml$",
2024-03-31 15:54:26 -04:00
"highlights": "queries/highlights.scm",
"external-files": [
2024-03-31 15:09:29 -04:00
"src/schema.core.c"
]
2024-03-27 05:31:32 -04:00
}
2019-08-31 07:14:13 -04:00
]
}