-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (66 loc) · 1.82 KB
/
package.json
File metadata and controls
67 lines (66 loc) · 1.82 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "chrome-extension-developer-tools",
"displayName": "Chrome Extension Developer Tools",
"description": "VSCode support for Chrome extension development",
"icon": "assets/chrome.png",
"publisher": "aaravb",
"repository": {
"url": "https://github.com/gadhagod/vscode-chrome-extension-devtools"
},
"version": "2.1.0",
"engines": {
"vscode": "^1.59.0"
},
"categories": [
"Other"
],
"keywords": [
"chrome"
],
"activationEvents": [
"workspaceContains:**/manifest.json",
"onCommand:chrome-extension-developer-tools.create",
"onCommand:chrome-extension-developer-tools.watch",
"onCommand:chrome-extension-developer-tools.build"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "chrome-extension-developer-tools.create",
"title": "Chrome Extension: Create New"
},
{
"command": "chrome-extension-developer-tools.watch",
"title": "Chrome Extension: Watch Files"
},
{
"command": "chrome-extension-developer-tools.build",
"title": "Chrome Extension: Build Files"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"package": "vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/node": "14.x",
"@types/vscode": "^1.59.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"glob": "^7.1.7",
"typescript": "^4.3.2"
},
"dependencies": {
"chrome-extension-cli-client": "github:gadhagod/chrome-extension-cli-client#1.1.1"
}
}