tinymist/syntaxes/textmate/package.json
Myriad-Dreamin 2a42ff67f5
build: bump version to 0.12.12-rc1 (#1000)
* build: bump version to 0.12.12-rc1

* docs: add changelog

* docs: update reference in changelog
2024-12-15 14:36:09 +08:00

31 lines
No EOL
655 B
JSON

{
"name": "typst-textmate",
"version": "0.12.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"
},
"devDependencies": {
"vscode-tmgrammar-test": "^0.1.3"
},
"contributes": {
"languages": [
{
"id": "typst",
"extensions": [
".typ",
".typc"
]
}
],
"grammars": [
{
"language": "typst",
"scopeName": "source.typst",
"path": "./typst.tmLanguage.json"
}
]
}
}