-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
131 lines (131 loc) · 4.28 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "myst-highlight",
"displayName": "MyST-Markdown",
"description": "The official Markdown syntax extension for MyST (Markedly Structured Text)",
"version": "0.11.0",
"publisher": "ExecutableBookProject",
"keywords": [
"markdown",
"myst"
],
"authors": [
"Chris Sewell"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/executablebooks/myst-vs-code.git"
},
"homepage": "https://github.com/executablebooks/myst-vs-code/blob/master/README.md",
"bugs": {
"url": "https://github.com/executablebooks/myst-vs-code/issues/new/choose"
},
"categories": [
"Programming Languages"
],
"icon": "logo/icon_128x128.png",
"engines": {
"vscode": "^1.41.0"
},
"main": "out/extension",
"extensionDependencies": [
"chrisjsewell.myst-tml-syntax"
],
"dependencies": {
"js-yaml": "^3.13.1",
"katex": "^0.13.11",
"markdown-it-amsmath": "^0.1.2",
"markdown-it-deflist": "^2.1.0",
"markdown-it-docutils": "^0.0.12",
"markdown-it-dollarmath": "^0.2.0",
"markdown-it-footnote": "^3.0.3",
"markdown-it-front-matter": "^0.2.3",
"markdown-it-task-lists": "^2.1.1"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/js-yaml": "^3.12.2",
"@types/katex": "^0.11.1",
"@types/markdown-it": "^12.0.2",
"@types/mocha": "^5.2.6",
"@types/node": "^8.10.25",
"@types/vscode": "^1.41.0",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.4.0",
"markdown-it": "^12.1.0",
"minimist": ">=1.2.2",
"mocha": "^6.1.4",
"prettier": "^2.3.2",
"process": "^0.11.10",
"tslint": "^5.8.0",
"typescript": "^3.5.1",
"vscode-test": "^1.3.0"
},
"scripts": {
"format": "prettier --write src/*.ts src/**/*.ts",
"lint": "eslint -c .eslintrc.yaml --max-warnings 1 --cache --ext .ts,.js .",
"lint:fix": "eslint -c .eslintrc.yaml --fix --cache --ext .ts,.js .",
"vscode:prepublish": "npm run build",
"build:code": "tsc -p ./",
"build:assets": "node out/build",
"build": "npm run build:code && npm run build:assets",
"watch": "tsc -watch -p ./",
"pretest": "npm run build",
"test:unit": "mocha --ui tdd out/test/standalone/",
"test:integration": "node out/test/runIntergration.js",
"test": "npm run test:unit && npm run test:integration"
},
"activationEvents": [
"onCommand:myst.Activate",
"onLanguage:markdown"
],
"contributes": {
"snippets": [
{
"language": "markdown",
"path": "snippets/directives.json"
}
],
"commands": [
{
"command": "myst.Activate",
"title": "MyST: Activate"
}
],
"markdown.markdownItPlugins": true,
"markdown.previewStyles": [
"./node_modules/markdown-it-docutils/dist/css/style.min.css"
],
"configuration": {
"title": "MyST-Markdown Configuration",
"properties": {
"myst.preview.enable": {
"description": "Whether to enable the Markdown Preview extension (requires reload)",
"type": "boolean",
"default": true
},
"myst.preview.extensions": {
"description": "The syntax extensions to load",
"type": "array",
"items": {
"type": "string",
"enum": [
"amsmath",
"colon_fence",
"deflist",
"dollarmath",
"tasklist"
]
},
"default": [
"dollarmath"
]
}
}
}
}
}