tinymist/syntaxes/textmate/package.json
github-actions[bot] 6683ec0b91
Some checks failed
tinymist::ci / Duplicate Actions Detection (push) Has been cancelled
tinymist::ci / Check Clippy, Formatting, Completion, Documentation, and Tests (Linux) (push) Has been cancelled
tinymist::ci / Check Minimum Rust version and Tests (Windows) (push) Has been cancelled
tinymist::ci / prepare-build (push) Has been cancelled
tinymist::ci / announce (push) Has been cancelled
tinymist::ci / build (push) Has been cancelled
build: bump version to 0.13.31
2025-09-25 00:22:22 +00:00

33 lines
874 B
JSON

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