-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.14 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.14 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "stereo",
"displayName": "Stereo",
"description": "Executable markdown for VS Code",
"version": "0.4.1",
"publisher": "leap21",
"license": "MIT",
"icon": "assets/icon.png",
"galleryBanner": {
"color": "#111111",
"theme": "dark"
},
"categories": [
"Other",
"Visualization"
],
"keywords": [
"markdown",
"executable",
"dashboard",
"runbook",
"live"
],
"repository": {
"type": "git",
"url": "https://github.com/leap21ai/stereo"
},
"homepage": "https://stereo.leap21llc.com",
"bugs": {
"url": "https://github.com/leap21ai/stereo/issues"
},
"engines": {
"vscode": "^1.85.0"
},
"main": "./dist/extension.js",
"activationEvents": [
"onCommand:stereo.openPreview"
],
"contributes": {
"customEditors": [
{
"viewType": "stereo.markdownPreview",
"displayName": "Stereo Preview",
"selector": [
{
"filenamePattern": "*.md"
}
],
"priority": "option"
}
],
"commands": [
{
"command": "stereo.openPreview",
"title": "Stereo: Open Preview"
},
{
"command": "stereo.runBlock",
"title": "Stereo: Run Block"
},
{
"command": "stereo.runAll",
"title": "Stereo: Run All Blocks"
}
],
"snippets": [
{
"language": "markdown",
"path": "./snippets/stereo.json"
}
],
"keybindings": [
{
"command": "stereo.openPreview",
"key": "ctrl+shift+m",
"mac": "ctrl+shift+m"
}
]
},
"scripts": {
"build": "node esbuild.mjs",
"watch": "node esbuild.mjs --watch",
"package": "vsce package",
"test": "vitest"
},
"devDependencies": {
"@types/markdown-it": "^14.1.0",
"@types/node": "^20.11.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/vscode": "^1.85.0",
"esbuild": "^0.24.0",
"playwright": "^1.58.2",
"typescript": "^5.7.0",
"vitest": "^3.0.0",
"vsce": "^2.15.0"
},
"dependencies": {
"markdown-it": "^14.1.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
}
}