-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 994 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
{
"publisher": "baincd",
"name": "diff-lang-folding",
"displayName": "Diff Folding",
"description": "Logical code folding for Diff language",
"version": "1.3.0",
"repository": {
"url": "https://github.com/baincd/vscode-diff-lang-folding"
},
"license": "MIT",
"engines": {
"vscode": "^1.23.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:diff",
"onLanguage:git-commit"
],
"main": "./out/diff-lang-folding.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint . --ext .ts,.tsx",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^12.12.0",
"@types/vscode": "^1.23.0",
"@typescript-eslint/eslint-plugin": "^4.16.0",
"@typescript-eslint/parser": "^4.16.0",
"eslint": "^7.21.0",
"typescript": "^4.2.2"
}
}