forked from domdomegg/markdown-inline-preview-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.63 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
{
"name": "markdown-inline-preview-vscode",
"version": "1.1.0",
"description": "A VS Code extension for improving the display of markdown directly in the editor",
"license": "MIT",
"author": "Adam Jones (domdomegg)",
"publisher": "domdomegg",
"private": "true",
"repository": {
"type": "git",
"url": "https://github.com/domdomegg/markdown-inline-preview-vscode.git"
},
"engines": {
"vscode": "^1.88.0"
},
"categories": [
"Programming Languages",
"Themes",
"Other"
],
"activationEvents": [
"onLanguage:markdown"
],
"main": "./dist/extension.js",
"contributes": {},
"scripts": {
"test": "echo 'Run tests using the `Run and Debug` preset in VS Code instead.'",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"clean": "rm -rf dist",
"build": "tsc --project tsconfig.build.json && vsce package --out dist/extension.vsix",
"deploy:prod": "npm run clean && npm run build && vsce publish --packagePath dist/extension.vsix --pat $AZURE_DEVOPS_TOKEN && ovsx publish dist/extension.vsix --pat $OPEN_VSX_TOKEN"
},
"devDependencies": {
"@tsconfig/node-lts": "^20.1.3",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.5",
"@types/vscode": "^1.88.0",
"@vscode/test-electron": "^2.3.9",
"@vscode/vsce": "^2.24.0",
"eslint": "^8.57.0",
"eslint-config-domdomegg": "^1.2.3",
"glob": "^10.3.12",
"mocha": "^10.4.0",
"ovsx": "^0.9.0",
"tsconfig-domdomegg": "^1.0.0",
"typescript": "^5.4.4"
},
"eslintConfig": {
"extends": [
"eslint-config-domdomegg"
],
"rules": {
"no-cond-assign": "off",
"no-continue": "off"
}
}
}