-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 1.83 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
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "quarto-wizard",
"displayName": "Quarto Wizard",
"description": "A Visual Studio Code extension that helps you manage Quarto projects.",
"version": "0.3.0",
"publisher": "mcanouil",
"author": {
"name": "Mickaël CANOUIL"
},
"license": "MIT",
"icon": "assets/logo/logo.png",
"galleryBanner": {
"color": "#333333",
"theme": "dark"
},
"keywords": [
"quarto",
"markdown",
"pandoc",
"extension",
"lua",
"latex",
"reveal.js",
"html",
"typst"
],
"categories": [
"Programming Languages",
"Data Science",
"Machine Learning",
"Notebooks"
],
"pricing": "Free",
"homepage": "https://github.com/mcanouil/quarto-wizard",
"repository": {
"type": "git",
"url": "https://github.com/mcanouil/quarto-wizard"
},
"bugs": {
"url": "https://github.com/mcanouil/quarto-wizard/issues"
},
"sponsor": {
"url": "https://github.com/sponsors/mcanouil"
},
"engines": {
"vscode": "^1.75.0"
},
"contributes": {
"commands": [
{
"command": "quartoWizard.installExtension",
"title": "Quarto Wizard: Install Extension(s)"
},
{
"command": "quartoWizard.showOutput",
"title": "Quarto Wizard: Show Quarto Wizard Log Output"
},
{
"command": "quartoWizard.clearRecentlyInstalled",
"title": "Quarto Wizard: Clear Recently Installed Extensions"
},
{
"command": "quartoWizard.newQuartoReprex",
"title": "Quarto Wizard: New Reproducible Document"
}
]
},
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^22.8.6",
"@types/vscode": "^1.75.0",
"typescript": "^5.6.2"
}
}