-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
67 lines (67 loc) · 1.95 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
{
"name": "markdown-emoji",
"version": "0.3.1",
"displayName": "Markdown Emoji",
"description": "Adds emoji syntax support to VS Code's built-in markdown preview and markdown cells in notebook",
"keywords": [
"emoji",
"markdown",
"emoticons",
"github",
"notebook",
"notebooks"
],
"icon": "logo/logox128.png",
"publisher": "bierner",
"license": "MIT",
"repository": {
"url": "https://github.com/mjbvz/vscode-markdown-emoji.git"
},
"bugs": {
"url": "https://github.com/mjbvz/vscode-markdown-emoji/issues"
},
"engines": {
"vscode": "^1.59.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"contributes": {
"markdown.markdownItPlugins": true,
"notebookRenderer": [
{
"id": "bierner.markdown-it-emoji-extension",
"displayName": "Markdown it emoji renderer",
"entrypoint": {
"extends": "vscode.markdown-it-renderer",
"path": "./notebook-out/index.js"
}
}
]
},
"main": "./dist/index.js",
"browser": "./dist/web/index.js",
"scripts": {
"watch": "webpack --watch --config ./build/webpack.config.js",
"package": "webpack --mode production --config ./build/webpack.config.js",
"lint": "eslint -c .eslintrc.js --ext .ts src",
"vscode:prepublish": "npm run package ; npm run package-web ; npm run build-notebook",
"watch-web": "webpack --watch --config ./build/web-extension.webpack.config.js",
"package-web": "webpack --mode production --devtool hidden-source-map --config ./build/web-extension.webpack.config.js",
"build-notebook": "node ./esbuild-notebook"
},
"devDependencies": {
"@types/markdown-it": "^12.0.1",
"@types/vscode": "^1.59.0",
"@types/vscode-notebook-renderer": "^1.60.0",
"esbuild": "^0.14.49",
"ts-loader": "^9.2.5",
"typescript": "^4.7.4",
"webpack": "^5.97.1",
"webpack-cli": "^4.8.0"
},
"dependencies": {
"markdown-it-emoji": "^2.0.0"
}
}