-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 2.52 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
{
"name": "aem-copilot",
"publisher": "neerajgrg93",
"displayName": "AEM Copilot",
"description": "Github Copilot for AEM Edge Delivery Services",
"icon": "resources/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/adobe/aem-github-copilot"
},
"version": "0.0.6",
"engines": {
"vscode": "^1.92.0"
},
"extensionDependencies": [
"github.copilot-chat"
],
"categories": [
"AI",
"Chat"
],
"activationEvents": [],
"contributes": {
"chatParticipants": [
{
"id": "aem",
"fullName": "AEM",
"name": "aem",
"description": "AEM Assistant to help with blocks developement",
"isSticky": true,
"commands": [
{
"name": "create",
"description": "Given a block name, create corresponding files"
},{
"name": "collection",
"description": "Pull a block from aem block collection repo"
},
{
"name": "docs",
"description": "Information About AEM Edge Delivery Services"
},
{
"name": "issues",
"description": "Issues management for AEM Edge Delivery Services"
}
]
}
],
"commands": [
{
"command": "aem.createFiles",
"title": "create files/folders for edge delivery services block"
}
]
},
"main": "./dist/extension.js",
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "npm run compile-tests && npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test",
"build": "webpack --mode production"
},
"devDependencies": {
"@octokit/rest": "^20.1.1",
"@types/jsdom": "^21.1.6",
"@types/mocha": "^10.0.6",
"@types/node": "^20.5.9",
"@types/vscode": "1.90.0",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@vscode/prompt-tsx": "^0.2.9-alpha",
"@vscode/test-cli": "^0.0.9",
"@vscode/test-electron": "^2.4.0",
"eslint": "^8.57.0",
"run-script-os": "^1.1.6",
"ts-loader": "^9.5.1",
"tslint": "^6.1.3",
"typescript": "^5.5.2",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"simple-git": "^3.24.0"
},
"dependencies": {
"jsdom": "^24.1.0"
}
}