-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
99 lines (99 loc) · 2.72 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "discoverpanel",
"displayName": "Discover Panel",
"publisher": "Ionide",
"contributors": [
{
"name": "Krzysztof Cieślak",
"url": "https://twitter.com/k_cieslak"
}
],
"preview": false,
"description": "Extension creating alternative UX for real time API exploration in VSCode",
"version": "0.1.0",
"license": "SEE LICENSE IN LICENSE.md",
"icon": "assets/logo.png",
"engines": {
"vscode": "^1.61.0"
},
"categories": [
"Other"
],
"bugs": {
"url": "https://github.com/ionide/Discover-Panel/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ionide/Discover-Panel.git"
},
"badges": [
{
"description": "Open Collective Backers",
"url": "https://img.shields.io/opencollective/backers/ionide.svg?color=blue&style=for-the-badge",
"href": "https://opencollective.com/ionide"
},
{
"description": "Open Collective Sponsors",
"url": "https://img.shields.io/opencollective/sponsors/ionide.svg?color=Blue&style=for-the-badge",
"href": "https://opencollective.com/ionide"
}
],
"main": "./out/extension.js",
"activationEvents": [
"onView:discoverpanel.tooltip",
"onView:discoverpanel.autocomplete"
],
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "discoverpanel-webview",
"title": "Discover Panel",
"icon": "assets/logo.svg"
}
]
},
"views": {
"discoverpanel-webview": [
{
"type": "webview",
"id": "discoverpanel.tooltip",
"name": "Symbol Information"
},
{
"type": "webview",
"id": "discoverpanel.autocomplete",
"name": "API Information"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run -S esbuild-base -- --minify",
"esbuild-base": "rimraf out && esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node",
"build": "npm run -S esbuild-base -- --sourcemap",
"watch": "npm run -S esbuild-base -- --sourcemap --watch",
"package": "vsce package",
"publish": "vsce publish -p $VSCE_TOKEN"
},
"devDependencies": {
"@types/glob": "^7.1.4",
"@types/mocha": "^9.0.0",
"@types/node": "14.x",
"@types/showdown": "^1.9.4",
"@types/vscode": "^1.61.0",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"@vscode/test-electron": "^1.6.2",
"esbuild": "^0.13.8",
"eslint": "^7.32.0",
"glob": "^7.1.7",
"mocha": "^9.1.1",
"showdown": "^1.9.1",
"typescript": "^4.4.3",
"vsce": "^1.100.2"
},
"dependencies": {
"@vscode/webview-ui-toolkit": "^0.8.3"
}
}