mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-04-27 16:55:44 +08:00
Switches all samples to use eslint 9 with flat configs. I've tried to migrate existing settings as much as possible. However our eslint configs were also inconsistent so I've tried to align these too
53 lines
1.4 KiB
JSON
53 lines
1.4 KiB
JSON
{
|
|
"name": "notebook-renderer-sample",
|
|
"displayName": "notebook-renderer-sample",
|
|
"description": "Example of a Notebook renderer (visualizer) for GitHub Issues Notebook that doesn't use any frontend frameworks.",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"engines": {
|
|
"vscode": "^1.58.0"
|
|
},
|
|
"categories": [
|
|
"Other"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/vscode-extension-samples"
|
|
},
|
|
"contributes": {
|
|
"notebookRenderer": [
|
|
{
|
|
"id": "notebook-renderer-github-issues",
|
|
"entrypoint": "./out/index.js",
|
|
"displayName": "GitHub Issues Plain Renderer",
|
|
"mimeTypes": [
|
|
"x-application/github-issues"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"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/vscode-notebook-renderer": "^1.57.8",
|
|
"@types/webpack-env": "^1.17.0",
|
|
"css-loader": "^4.2.0",
|
|
"eslint": "^9.13.0",
|
|
"style-loader": "^1.2.1",
|
|
"ts-loader": "^9.2.2",
|
|
"typescript": "^5.6.2",
|
|
"typescript-eslint": "^8.11.0",
|
|
"vscode-notebook-error-overlay": "^1.0.1",
|
|
"webpack": "^5.38.1",
|
|
"webpack-cli": "^4.7.0"
|
|
}
|
|
}
|