-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.23 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
{
"name": "@michijs/vscode-mathml",
"displayName": "MathML",
"description": "MathML extension for VS Code",
"author": "Lucas M. Segurado",
"icon": "media/mathml.png",
"version": "1.0.4",
"publisher": "michijs",
"repository": {
"type": "git",
"url": "https://github.com/michijs/vscode-mathml.git"
},
"files": [
"dist/"
],
"galleryBanner": {
"color": "#154db5",
"theme": "dark"
},
"sponsor": {
"url": "https://github.com/sponsors/michijs"
},
"license": "MIT",
"engines": {
"vscode": "^1.38.0"
},
"scripts": {
"start": "ts-node ./tasks/generateTypes.ts",
"dist": "tsc",
"package": "change-package-name vscode-mathml && vsce package && change-package-name @michijs/vscode-mathml",
"publish-vsce": "vsce publish",
"link": "npm run dist && npm link --force && tsc -w"
},
"keywords": [
"math",
"mathml",
"html",
"typescript"
],
"devDependencies": {
"change-package-name": "1.0.5",
"@vscode/web-custom-data": "0.4.12",
"@vscode/vsce": "2.26.0",
"ts-node": "10.9.2",
"typescript": "5.6.2",
"vscode-html-languageservice": "5.2.0"
},
"contributes": {
"html": {
"customData": [
"./dist/mathml.json"
]
}
}
}