-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.59 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
{
"name": "vscode-api-explorer",
"version": "0.1.0",
"publisher": "benmcmorran",
"engines": {
"vscode": "^1.70.0"
},
"license": "SEE LICENSE IN LICENSE.md",
"displayName": "VS Code API Explorer",
"description": "Explore the VS Code API interactively in the terminal.",
"categories": [
"Other"
],
"galleryBanner": {
"color": "#F3F3F3",
"theme": "light"
},
"icon": "resources/icon.png",
"qna": "https://github.com/benmcmorran/vscode-api-explorer/issues",
"repository": {
"type": "git",
"url": "https://github.com/benmcmorran/vscode-api-explorer.git"
},
"bugs": {
"url": "https://github.com/benmcmorran/vscode-api-explorer/issues"
},
"homepage": "https://github.com/benmcmorran/vscode-api-explorer",
"main": "./out/extension.js",
"contributes": {
"terminal": {
"profiles": [
{
"icon": "$(code)",
"id": "vscode-api-explorer.terminal",
"title": "VS Code API Explorer"
}
]
}
},
"activationEvents": [
"onTerminalProfile:vscode-api-explorer.terminal"
],
"devDependencies": {
"@rushstack/eslint-config": "^3.0.0",
"@types/node": "16.x",
"@types/vscode": "^1.70.0",
"eslint": "^7.27.0",
"prettier": "^2.7.1",
"typescript": "^4.3.2"
},
"extensionKind": [
"workspace",
"ui"
],
"scripts": {
"vscode:prepublish": "npm run format:check && npm run lint && npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "eslint src --ext ts",
"format": "prettier --write .",
"format:check": "prettier --check ."
}
}