2021-08-01 21:30:26 -07:00
|
|
|
{
|
|
|
|
|
"name": "notebook-renderer-sample",
|
|
|
|
|
"displayName": "notebook-renderer-sample",
|
2021-08-01 22:14:27 -07:00
|
|
|
"description": "Example of a Notebook renderer (visualizer) for GitHub Issues Notebook that doesn't use any frontend frameworks.",
|
2021-08-01 21:30:26 -07:00
|
|
|
"version": "0.0.1",
|
2022-02-09 11:48:55 -08:00
|
|
|
"private": true,
|
2022-04-13 15:18:26 -07:00
|
|
|
"license": "MIT",
|
2021-08-01 21:30:26 -07:00
|
|
|
"engines": {
|
|
|
|
|
"vscode": "^1.58.0"
|
|
|
|
|
},
|
|
|
|
|
"categories": [
|
|
|
|
|
"Other"
|
|
|
|
|
],
|
2022-11-29 20:58:49 +01:00
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://github.com/Microsoft/vscode-extension-samples"
|
|
|
|
|
},
|
2021-08-01 21:30:26 -07:00
|
|
|
"contributes": {
|
|
|
|
|
"notebookRenderer": [
|
|
|
|
|
{
|
2021-08-01 22:14:27 -07:00
|
|
|
"id": "notebook-renderer-github-issues",
|
2022-06-27 16:26:30 -07:00
|
|
|
"entrypoint": "./out/index.js",
|
2021-08-01 22:14:27 -07:00
|
|
|
"displayName": "GitHub Issues Plain Renderer",
|
2021-10-04 12:24:14 -07:00
|
|
|
"mimeTypes": [
|
|
|
|
|
"x-application/github-issues"
|
|
|
|
|
]
|
2021-08-01 21:30:26 -07:00
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
2022-06-27 16:26:30 -07:00
|
|
|
"vscode:prepublish": "webpack --mode production",
|
|
|
|
|
"webpack": "webpack --mode development",
|
|
|
|
|
"webpack-dev": "webpack --mode development --watch",
|
|
|
|
|
"test-compile": "tsc -p ./",
|
|
|
|
|
"lint": "eslint src --ext .ts,.tsx"
|
2021-08-01 21:30:26 -07:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2022-04-13 15:18:26 -07:00
|
|
|
"@types/vscode-notebook-renderer": "^1.57.8",
|
2022-06-27 16:26:30 -07:00
|
|
|
"@types/webpack-env": "^1.17.0",
|
2023-09-13 14:45:34 -07:00
|
|
|
"@typescript-eslint/eslint-plugin": "^6.7.0",
|
|
|
|
|
"@typescript-eslint/parser": "^6.7.0",
|
2021-08-01 21:30:26 -07:00
|
|
|
"css-loader": "^4.2.0",
|
2022-11-04 13:52:32 -07:00
|
|
|
"eslint": "^8.26.0",
|
2021-08-01 21:30:26 -07:00
|
|
|
"style-loader": "^1.2.1",
|
|
|
|
|
"ts-loader": "^9.2.2",
|
2023-12-05 10:51:43 -08:00
|
|
|
"typescript": "^5.3.2",
|
2021-08-01 21:30:26 -07:00
|
|
|
"vscode-notebook-error-overlay": "^1.0.1",
|
|
|
|
|
"webpack": "^5.38.1",
|
|
|
|
|
"webpack-cli": "^4.7.0"
|
|
|
|
|
}
|
2022-06-27 16:26:30 -07:00
|
|
|
}
|