tinymist/syntaxes/textmate/package.json
Myriad-Dreamin d5aad257e7
build: bump version to 0.13.12-rc1 (#1669)
* docs: update changelog

* docs: update changelog

* build: bump version to v0.13.12-rc1

* build: update assets
2025-04-17 15:35:03 +08:00

33 lines
878 B
JSON

{
"name": "typst-textmate",
"version": "0.13.12-rc1",
"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",
"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"
}
]
}
}