pulsar/packages/language-toml/package.json
Andrew Dupont fb59123f73 Add TOML tree-sitter grammar
Broadly similar to the TM-style grammar. A folds query is present to match the
folding behavior that I observe in that grammar, but no indents query is present
because indentation is not mandated or prohibited by the TOML spec and is
entirely a stylistic preference.
2023-06-29 10:31:55 -07:00

16 lines
353 B
JSON

{
"name": "language-toml",
"version": "0.20.0",
"main": "lib/main",
"description": "Syntax highlighting for Tom's Obvious, Minimal Language (TOML).",
"repository": "https://github.com/pulsar-edit/pulsar",
"license": "MIT",
"engines": {
"atom": "*",
"node": ">=14"
},
"devDependencies": {
"tree-sitter-toml": "^0.5.1"
}
}