-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.93 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.93 KB
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
69
70
71
72
73
74
75
76
77
{
"name": "scrapbook-renderers",
"displayName": "Scrapbook Renderers",
"description": "Jupyter Notebook renderers for scrapbook scraps",
"version": "0.0.1",
"publisher": "tlinhart",
"author": {
"name": "Tomáš Linhart",
"email": "pasmen@gmail.com"
},
"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": "pasmen@gmail.com"
},
"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": "2.4.7",
"@microlink/react-json-view": "1.31.8",
"@types/node": "24.12.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@types/vscode": "1.110.0",
"@types/vscode-notebook-renderer": "1.72.4",
"@vscode/vsce": "3.7.1",
"esbuild": "0.27.4",
"react": "19.2.4",
"react-dom": "19.2.4",
"typescript": "5.9.3",
"vscode-notebook-error-overlay": "1.1.0"
}
}