-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.02 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
{
"name": "markwright",
"description": "Dead-simple desktop publishing with Markdown and CSS.",
"version": "0.0.1",
"publisher": "noahlange",
"private": true,
"icon": "icon-128px.png",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-extension-samples"
},
"engines": {
"vscode": "^1.47.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onWebviewPanel:markwright"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "markwright.open",
"title": "Open the working directory as a Markwright document.",
"category": "Markwright"
},
{
"command": "markwright.exportHTML",
"title": "Generate HTML output for the working directory.",
"category": "Markwright"
}
]
},
"scripts": {
"vscode:prepublish": "node build",
"build": "node build",
"dev:lint": "eslint --fix './src/**/*.{ts,tsx}'",
"dev:pretty": "prettier --write 'src/**/*'",
"dev:types": "tsc --noEmit",
"dev:bundle": "vsce package --no-dependencies"
},
"devDependencies": {
"@types/markdown-it": "^12.2.3",
"@types/node": "^16.11.7",
"@types/vscode": "^1.47.0",
"@types/vscode-webview": "^1.57.0",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"esbuild": "^0.20.2",
"eslint": "^8.13.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-simple-import-sort": "^7.0.0",
"markdown-it": "^13.0.1",
"markdown-it-container": "^3.0.0",
"markdown-it-emoji": "^2.0.2",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"normalize.css": "^8.0.1",
"pagedjs": "^0.5.0-beta.1",
"postcss": "^8.4.16",
"postcss-nesting": "^10.1.10",
"postcss-scss": "^4.0.4",
"prettier": "^3.2.5",
"typescript": "^4.7.2"
},
"dependencies": {
"@vscode/webview-ui-toolkit": "^1.4.0"
}
}