-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.89 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "scrapbook-renderers",
"displayName": "Scrapbook Renderers",
"description": "Jupyter Notebook renderers for scrapbook scraps",
"version": "0.0.1",
"publisher": "tlinhart",
"author": {
"name": "Tomáš Linhart",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/tlinhart/vscode-scrapbook-renderers",
"repository": {
"type": "git",
"url": "git+https://github.com/tlinhart/vscode-scrapbook-renderers.git"
},
"bugs": {
"url": "https://github.com/tlinhart/vscode-scrapbook-renderers/issues",
"email": "[email protected]"
},
"icon": "images/icon.png",
"galleryBanner": {
"color": "#ffffff",
"theme": "light"
},
"categories": ["Other", "Data Science", "Notebooks", "Visualization"],
"keywords": ["jupyter", "notebook", "notebookRenderer"],
"engines": {
"vscode": "^1.95.0"
},
"contributes": {
"notebookRenderer": [
{
"id": "scrapbook-renderer",
"entrypoint": "./dist/index.js",
"displayName": "Scrapbook Renderer",
"mimeTypes": [
"application/scrapbook.scrap.json+json",
"application/scrapbook.scrap.text+json"
]
}
]
},
"scripts": {
"watch:typecheck": "tsc --watch",
"watch:build": "node esbuild.mjs --watch",
"typecheck": "tsc",
"biome:fix": "biome check --write",
"biome": "biome ci",
"build": "node esbuild.mjs --production",
"publish": "vsce publish"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@microlink/react-json-view": "1.24.0",
"@types/node": "22.13.0",
"@types/react": "19.0.8",
"@types/react-dom": "19.0.3",
"@types/vscode": "1.96.0",
"@types/vscode-notebook-renderer": "1.72.3",
"@vscode/vsce": "3.2.2",
"esbuild": "0.24.2",
"react": "19.0.0",
"react-dom": "19.0.0",
"typescript": "5.7.3",
"vscode-notebook-error-overlay": "1.1.0"
}
}