tinymist/syntaxes/textmate/package.json
Myriad-Dreamin 358301cf6c
build: bump version to 0.14.0 (#2215)
+tag v0.14.0
2025-11-02 16:15:26 +08:00

33 lines
851 B
JSON

{
"name": "typst-textmate",
"version": "0.14.0",
"private": true,
"type": "module",
"scripts": {
"compile": "node scripts/build.ts --compile",
"test": "yarn compile && npx vscode-tmgrammar-snap --updateSnapshot tests/unit/**/*.typ",
"test:packages": "yarn compile && npx vscode-tmgrammar-snap --updateSnapshot tests/packages/**/*.typ",
"test:official": "yarn compile && npx vscode-tmgrammar-snap --updateSnapshot tests/official-testing/**/*.typ"
},
"devDependencies": {
"vscode-tmgrammar-test": "^0.1.3"
},
"contributes": {
"languages": [
{
"id": "typst",
"extensions": [
".typ",
".typc"
]
}
],
"grammars": [
{
"language": "typst",
"scopeName": "source.typst",
"path": "./typst.tmLanguage.json"
}
]
}
}