-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.49 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
{
"name": "commit2tweet",
"displayName": "Commit2Share",
"author": {
"name": "Shimanta Krishna Bhuyan",
"url": "https://x.com/AllDevThings"
},
"publisher": "ShimantaKrishnaBhuyan",
"description": "Tweet or share to LinkedIn everytime you commit to your repo, build social proof",
"version": "1.2.0",
"engines": {
"vscode": "^1.89.0"
},
"icon": "images/icon.png",
"galleryBanner": {
"color": "#C295F9",
"theme": "dark"
},
"license": "MIT",
"categories": [
"AI",
"Other"
],
"keywords": [
"Development Tools",
"AI",
"Ollama",
"OpenAI",
"Tweet"
],
"pricing": "Free",
"activationEvents": [],
"repository": {
"type": "git",
"url": "https://github.com/ShimantaBhuyan/commit2tweet.git"
},
"homepage": "https://github.com/ShimantaBhuyan/commit2tweet/blob/main/README.md",
"main": "./extension.js",
"contributes": {
"commands": [
{
"command": "commit2tweet.tweetCommitDiff",
"title": "Tweet Commit Diff"
},
{
"command": "commit2tweet.linkedinCommitDiff",
"title": "Share Commit Diff to LinkedIn"
}
],
"configuration": {
"title": "Commit2Share",
"properties": {
"commit2tweet.endpoint": {
"type": "string",
"default": "http://localhost:11434/api/chat",
"description": "Endpoint for generating tweet text"
},
"commit2tweet.apiKey": {
"type": "string",
"default": "",
"description": "Optional API key for the endpoint"
},
"commit2tweet.model": {
"type": "string",
"default": "llama3",
"description": "Model to use for generating tweets"
}
}
},
"keybindings": [
{
"command": "commit2tweet.tweetCommitDiff",
"key": "ctrl+alt+l",
"mac": "cmd+ctrl+l"
},
{
"command": "commit2tweet.linkedinCommitDiff",
"key": "ctrl+alt+k",
"mac": "cmd+ctrl+k"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "vscode-test",
"deploy": "vsce publish"
},
"devDependencies": {
"@types/mocha": "^10.0.7",
"@types/node": "20.x",
"@types/vscode": "^1.89.0",
"@vscode/test-cli": "^0.0.9",
"@vscode/test-electron": "^2.4.0",
"@vscode/vsce": "^2.29.0",
"eslint": "^8.57.0",
"glob": "^7.1.7",
"mocha": "^8.4.0",
"proxyquire": "^2.1.3",
"sinon": "^11.1.1",
"typescript": "^5.4.5"
}
}