-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 966 Bytes
/
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
{
"name": "intellisense-mathjax",
"displayName": "IntelliSense for MathJax",
"description": "MathJax Syntax Completion for Files based on the Definitions found in your Workspace",
"version": "1.0.1",
"publisher": "swastik2442",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Swastik2442/intellisense-mathjax"
},
"engines": {
"vscode": "^1.32.0"
},
"categories": [
"Programming Languages",
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"deploy": "vsce publish --yarn",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^12.12.0",
"@types/vscode": "^1.32.0",
"@typescript-eslint/eslint-plugin": "^4.16.0",
"@typescript-eslint/parser": "^4.16.0",
"eslint": "^7.21.0",
"typescript": "^4.5.5",
"vsce": "^2.7.0"
}
}