-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.96 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
68
69
70
71
72
73
74
75
{
"name": "copilot-annotation",
"displayName": "Copilot Annotation",
"description": "Turn visual annotations into powerful context that GitHub Copilot can understand more effectively.",
"icon": "media/marketplace-icon.png",
"version": "1.0.5",
"publisher": "Pocky",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/PckyDev/Copilot-Annotation.git"
},
"homepage": "https://github.com/PckyDev/Copilot-Annotation",
"bugs": {
"url": "https://github.com/PckyDev/Copilot-Annotation/issues"
},
"engines": {
"vscode": "^1.100.0"
},
"categories": [
"Other"
],
"keywords": [
"copilot",
"annotation",
"website",
"feedback",
"review",
"preview",
"webview",
"ui"
],
"galleryBanner": {
"color": "#1f1f1f",
"theme": "dark"
},
"markdown": "github",
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "copilotAnnotation.openPreview",
"title": "Copilot Annotation: Open Website Preview"
}
],
"configuration": {
"title": "Copilot Annotation",
"properties": {
"copilotAnnotation.defaultUrl": {
"type": "string",
"default": "http://127.0.0.1:3000",
"description": "Default URL used when opening the annotation preview."
}
}
}
},
"scripts": {
"prepare:assets": "node ./scripts/copy-fontawesome-assets.mjs",
"validate:injected": "node ./scripts/validate-injected-bundles.mjs",
"vscode:prepublish": "npm run prepare:assets && npm run compile",
"compile": "npm run validate:injected && tsc -p ./",
"package": "npm run prepare:assets && npx @vscode/vsce package",
"watch": "tsc -watch -p ./"
},
"dependencies": {
"cheerio": "^1.1.2"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^7.2.0",
"@vscode/vsce": "2.25.0",
"@types/node": "^22.15.18",
"@types/vscode": "^1.100.0",
"typescript": "^5.8.3"
}
}