2022-12-30 11:51:28 -08:00
|
|
|
{
|
2025-08-06 23:43:14 -07:00
|
|
|
"name": "notebook-serializer-sample",
|
|
|
|
|
"displayName": "notebook-serializer-sample",
|
|
|
|
|
"description": "Notebook using Serializer API sample",
|
|
|
|
|
"publisher": "vscode-samples",
|
|
|
|
|
"version": "0.0.1",
|
|
|
|
|
"engines": {
|
2025-08-07 07:57:14 -07:00
|
|
|
"vscode": "^1.100.0"
|
2025-08-06 23:43:14 -07:00
|
|
|
},
|
|
|
|
|
"categories": [
|
|
|
|
|
"Other"
|
|
|
|
|
],
|
|
|
|
|
"activationEvents": [
|
|
|
|
|
"onNotebook:test-notebook-serializer",
|
|
|
|
|
"onCommand:notebook-serializer-sample.createJsonNotebook"
|
|
|
|
|
],
|
|
|
|
|
"main": "./out/extension.js",
|
|
|
|
|
"contributes": {
|
|
|
|
|
"commands": [
|
|
|
|
|
{
|
|
|
|
|
"command": "notebook-serializer-sample.createJsonNotebook",
|
|
|
|
|
"title": "Create JSON Notebook"
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"notebooks": [
|
|
|
|
|
{
|
|
|
|
|
"type": "test-notebook-serializer",
|
|
|
|
|
"displayName": "Sample Notebook",
|
|
|
|
|
"selector": [
|
|
|
|
|
{
|
|
|
|
|
"filenamePattern": "*.sample-json-notebook"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"vscode:prepublish": "npm run compile",
|
|
|
|
|
"compile": "tsc -b",
|
|
|
|
|
"lint": "eslint",
|
|
|
|
|
"watch": "tsc -b --watch"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@eslint/js": "^9.13.0",
|
|
|
|
|
"@stylistic/eslint-plugin": "^2.9.0",
|
2025-08-07 07:57:14 -07:00
|
|
|
"@types/vscode": "^1.100.0",
|
2025-08-06 23:43:14 -07:00
|
|
|
"eslint": "^9.13.0",
|
|
|
|
|
"typescript": "^5.9.2",
|
|
|
|
|
"typescript-eslint": "^8.39.0"
|
|
|
|
|
}
|
|
|
|
|
}
|