-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.37 KB
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
{
"name": "save-vscode-schemas",
"displayName": "save-vscode-schemas",
"description": "Save VS Code's schemas",
"version": "1.0.0",
"publisher": "wraith13",
"license": "SEE LICENSE IN LICENSE_1_0.txt",
"engines": {
"vscode": "^1.48.0"
},
"bugs": {
"url": "https://github.com/wraith13/save-vscode-schemas/issues"
},
"homepage": "https://github.com/wraith13/save-vscode-schemas",
"repository": {
"type": "git",
"url": "https://github.com/wraith13/save-vscode-schemas.git"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:save-vscode-schemas"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "save-vscode-schemas",
"title": "Save VS Code's Schemas"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint source --ext ts",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/vscode": "^1.48.0",
"@types/glob": "^7.1.3",
"@types/node": "^14.0.27",
"eslint": "^7.6.0",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"glob": "^7.1.6",
"typescript": "^3.8.3"
}
}