mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
This makes sure that if folks get a relatively recent `vscode.d.ts`. It also lets us safely bump up the target to es2024 so you can use all the latest lib additions
47 lines
1.3 KiB
JSON
47 lines
1.3 KiB
JSON
{
|
|
"name": "notebook-extend-markdown-renderer-sample",
|
|
"displayName": "notebook-extend-markdown-renderer-sample",
|
|
"description": "Example of a Notebook renderer that extends VS Code's built-in notebook markdown rendering with :emoji: support.",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"engines": {
|
|
"vscode": "^1.100.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"contributes": {
|
|
"notebookRenderer": [
|
|
{
|
|
"id": "vscode-samples.markdown-it.emoji-extension",
|
|
"displayName": "Markdown it Emoji renderer",
|
|
"entrypoint": {
|
|
"extends": "vscode.markdown-it-renderer",
|
|
"path": "./out/emoji.js"
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"vscode:prepublish": "webpack --mode production",
|
|
"webpack": "webpack --mode development",
|
|
"webpack-dev": "webpack --mode development --watch",
|
|
"test-compile": "tsc -p ./",
|
|
"lint": "eslint"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.13.0",
|
|
"@stylistic/eslint-plugin": "^2.9.0",
|
|
"@types/markdown-it": "^12.2.3",
|
|
"@types/vscode-notebook-renderer": "^1.57.8",
|
|
"@types/webpack-env": "^1.17.0",
|
|
"eslint": "^9.13.0",
|
|
"markdown-it-emoji": "^2.0.2",
|
|
"ts-loader": "^9.2.2",
|
|
"typescript": "^5.9.2",
|
|
"typescript-eslint": "^8.39.0",
|
|
"webpack": "^5.38.1",
|
|
"webpack-cli": "^4.7.0"
|
|
}
|
|
} |