-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.11 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.11 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
{
"name": "mermaid-islands",
"displayName": "Mermaid Islands",
"description": "Renders and displays the diagram described in the comments.",
"version": "0.2.1",
"engines": {
"vscode": "^1.102.0"
},
"publisher": "primenumber",
"repository": {
"type": "git",
"url": "https://github.com/primenumber/vscode-mermaid-islands.git"
},
"categories": [
"Visualization"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "mermaid-islands.helloWorld",
"title": "Hello World"
}
],
"configuration": {
"title": "Mermaid Islands",
"properties": {
"mermaid-islands.browserPath": {
"type": "string",
"default": "",
"description": "Custom path to Chrome/Chromium executable. Leave empty to auto-detect.",
"scope": "window"
},
"mermaid-islands.enableBrowserExtensions": {
"type": "boolean",
"default": false,
"description": "Enable browser extensions in Puppeteer. Can be useful for certain rendering scenarios.",
"scope": "window"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "node esbuild.js",
"package": "node esbuild.js --production",
"watch": "node esbuild.js --watch",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "20.x",
"@types/trusted-types": "^2.0.7",
"@types/vscode": "^1.102.0",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"@vscode/test-cli": "^0.0.11",
"@vscode/test-electron": "^2.5.2",
"esbuild": "^0.25.8",
"eslint": "^9.25.1",
"type-fest": "^4.41.0",
"typescript": "^5.8.3"
},
"dependencies": {
"@types/puppeteer": "^5.4.7",
"mermaid": "^11.9.0",
"puppeteer-core": "^24.15.0"
}
}