-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.57 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
{
"name": "markdown-base64-replace-by-id",
"private": true,
"displayName": "Markdown Base64 Image ID",
"version": "0.0.2",
"publisher": "amoxuk",
"icon": "icon.png",
"description": "This is a markdown ext that replace base64 code by `![][image-id]` and append base64 code to the text's last line.",
"repository": "https://github.com/amoxuk/vscode-ext-markdown-base64-replace-by-id",
"bugs": {
"url": "https://github.com/amoxuk/vscode-ext-markdown-base64-replace-by-id/issue"
},
"engines": {
"vscode": "^1.59.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:markdown"
],
"browser": "./dist/web/extension.js",
"main": "./dist/web/extension.js",
"scripts": {
"install": "npm install ",
"test": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=.",
"pretest": "npm run compile-web",
"vscode:prepublish": "npm run package-web",
"compile-web": "webpack",
"watch-web": "webpack --watch",
"package-web": "webpack --mode production --devtool hidden-source-map",
"vscode:prepublish-static": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/vscode": "^1.59.0",
"@types/webpack-env": "^1.16.2",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"@vscode/test-web": "^0.0.22",
"assert": "^2.0.0",
"eslint": "^8.13.0",
"mocha": "^9.2.0",
"process": "^0.11.10",
"ts-loader": "^9.2.5",
"typescript": "^4.6.3",
"webpack": "^5.52.1",
"webpack-cli": "^4.8.0"
}
}