-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.17 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
{
"name": "rpf-markdown-preview",
"displayName": "rpf-markdown-preview",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/RaspberryPiFoundation/rpf-markdown-preview.git"
},
"description": "",
"version": "0.0.4",
"engines": {
"vscode": "^1.116.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:markdown"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "rpf-markdown-preview.openPreview",
"title": "RPF Markdown: Open Preview"
}
],
"menus": {
"explorer/context": [
{
"when": "resourceLangId == markdown",
"command": "rpf-markdown-preview.openPreview",
"group": "navigation"
}
],
"editor/title": [
{
"when": "resourceLangId == markdown",
"command": "rpf-markdown-preview.openPreview",
"group": "navigation"
}
]
}
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile:ext": "tsc -p ./tsconfig.extension.json",
"compile:webview": "node scripts/build-webview.mjs",
"compile": "npm run compile:ext && npm run compile:webview",
"watch:webview": "node scripts/build-webview.mjs --watch",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src",
"test": "vscode-test",
"wdio": "wdio run ./wdio.conf.ts"
},
"devDependencies": {
"@testing-library/webdriverio": "^3.2.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.0.0",
"@types/vscode": "^1.116.0",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.5.2",
"@wdio/cli": "^9.27.0",
"@wdio/globals": "^9.27.0",
"@wdio/local-runner": "^9.27.0",
"@wdio/mocha-framework": "^9.27.0",
"@wdio/spec-reporter": "^9.27.0",
"esbuild": "^0.28.0",
"esbuild-sass-plugin": "^3.7.0",
"eslint": "^9.39.3",
"expect-webdriverio": "^5.6.5",
"sass": "^1.99.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"wdio-vscode-service": "^6.1.4"
},
"dependencies": {
"@raspberrypifoundation/rpf-markdown-core": "^0.1.2",
"prismjs": "^1.30.0"
}
}