-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.74 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
{
"name": "cocover",
"displayName": "CoCover",
"publisher": "mayashavinstudio",
"description": "Your AI Assistant in enhancing your markdown content with generated professional cover images and SEO-optimized titles, saving your valuable time and improving your content's quality.",
"version": "0.0.5",
"icon": "./Cocover.png",
"engines": {
"vscode": "^1.94.0"
},
"preview": true,
"keywords": [
"SEO",
"Content",
"Cover Image",
"cdn",
"cloudinary",
"image",
"openai",
"dalle",
"copilot",
"chat",
"assistant",
"ai"
],
"categories": [
"AI",
"Chat"
],
"repository": {
"type": "git",
"url": "https://github.com/mayashavin/cocover"
},
"main": "./dist/extension.js",
"extensionDependencies": [
"github.copilot-chat"
],
"extensionKind": [
"ui"
],
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"chatParticipants": [
{
"id": "cocover.cover",
"fullName": "CoCover",
"name": "cocover",
"description": "Ask to generate a cover image or perform SEO fixes for your blog content",
"isSticky": true,
"commands": [
{
"name": "image",
"description": "Generate a cover image for your blog post or article"
}
],
"disambiguation": []
}
]
},
"scripts": {
"vscode:prepublish": "yarn run package",
"compile": "yarn run check-types && yarn run lint && node esbuild.js",
"watch": "npm-run-all -p watch:tsc",
"watch:esbuild": "node esbuild.js --watch",
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
"package": "yarn run check-types && yarn run lint && node esbuild.js --production",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "yarn run compile-tests && yarn run compile && yarn run lint",
"check-types": "tsc --noEmit",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.8",
"@types/node": "20.x",
"@types/vscode": "^1.94.0",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"esbuild": "^0.24.0",
"eslint": "^9.11.1",
"npm-run-all": "^4.1.5",
"typescript": "^5.6.2"
},
"dependencies": {
"@vscode/extension-telemetry": "^0.9.7",
"cloudinary": "^2.5.1",
"openai": "^4.67.3"
},
"license": "SEE LICENSE IN LICENSE",
"homepage": "https://github.com/mayashavin/cocover/blob/main/README.md",
"bugs": {
"url": "https://github.com/mayashavin/cocover/issues"
},
"sponsor": {
"url": "https://github.com/sponsors/mayashavin"
}
}