mirror of
https://github.com/Myriad-Dreamin/tinymist.git
synced 2025-12-23 08:47:50 +00:00
* build: update readme and changelog for update * build: bump version to 0.11.3 * dev: remove a dirty console log * dev: update changelog
31 lines
650 B
JSON
31 lines
650 B
JSON
{
|
|
"name": "typst-textmate",
|
|
"version": "0.11.3",
|
|
"private": true,
|
|
"scripts": {
|
|
"compile": "npx tsc && node ./dist/main.js",
|
|
"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"
|
|
}
|
|
]
|
|
}
|
|
}
|