tinymist/syntaxes/textmate/package.json
Myriad-Dreamin 4437b3bffb
build: bump version to 0.12.0 (#712)
* build: bump version to 0.12.0

* build: fix git versions

* docs: update changelog

* fix: description in changelog

* fix: wrong category
2024-10-20 00:52:15 +08:00

31 lines
No EOL
650 B
JSON

{
"name": "typst-textmate",
"version": "0.12.0",
"private": true,
"scripts": {
"compile": "npx tsc && node ./dist/main.mjs",
"bundle": "node scripts/install.cjs",
"test": "yarn compile && npx vscode-tmgrammar-snap --updateSnapshot tests/unit/**/*.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"
}
]
}
}