This repository was archived by the owner on May 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (125 loc) · 3.05 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "heykeploy",
"displayName": "Keploy - Alpha",
"description": "E2E Testing , Right from your Vscode!",
"version": "2.6.4",
"publisher": "Akash-Singh04",
"icon": "media/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/Akash-Singh04/KeployVScodeExtension"
},
"engines": {
"vscode": "^1.86.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "Keploy-Sidebar",
"title": "Keploy",
"icon": "media/logo.png"
}
]
},
"views": {
"Keploy-Sidebar": [
{
"type": "webview",
"id": "Keploy-Sidebar",
"name": "Keploy",
"icon": "media/logo.png",
"webviewOptions": {
"retainContextWhenHidden": true
}
}
]
},
"menus" : {
"view/title": [
{
"command": "heykeploy.updateKeploy"
},
{
"command": "heykeploy.getLatestVersion"
},
{
"command": "heykeploy.KeployVersion"
},
{
"command": "heykeploy.viewChangeLog"
},
{
"command": "heykeploy.viewDocumentation"
}
]
},
"commands": [
{
"command": "heykeploy.HeyKeploy",
"title": "HeyKeploy"
},
{
"command": "heykeploy.updateKeploy",
"title": "Update your Keploy"
},
{
"command": "heykeploy.KeployVersion",
"title": "View Your Keploy Version"
},
{
"command": "heykeploy.getLatestVersion",
"title": "Get Latest Version"
},
{
"command": "heykeploy.viewChangeLog",
"title": "View Change Log"
},
{
"command": "heykeploy.viewDocumentation",
"title": "View Docs"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"rollup": "rollup -c -w --bundleConfigAsCjs",
"watch": "rollup -c --bundleConfigAsCjs && tsc -watch -p ./",
"debug": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@tsconfig/svelte": "^1.0.0",
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/sinon": "^17.0.3",
"@types/vscode": "^1.86.0",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.9",
"concurrently": "^8.2.2",
"eslint": "^8.56.0",
"rollup": "^4.12.0",
"rollup-plugin-svelte": "^6.0.0",
"svelte-check": "^3.6.6",
"svelte-preprocess": "^5.1.3",
"typescript": "^4.9.5"
},
"dependencies": {
"sinon": "^17.0.1",
"svelte": "^4.2.12"
}
}