-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.1 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
{
"name": "@apappas1129/git-synced",
"version": "1.0.1",
"description": "Generate empty commits by mirroring the commit history from a secondary GitHub profile to plot contributions on your primary account.",
"type": "module",
"main": "index.js",
"bin": {
"git-synced": "./index.js"
},
"engines": {
"node": ">=18.17"
},
"files": [
"index.js",
"src"
],
"scripts": {
"start": "node index.js",
"test": "node --test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apappas1129/git-synced.git"
},
"keywords": [
"contribution",
"contributions",
"sync commits",
"sync contributions",
"merge commits",
"merge contributions",
"cli"
],
"author": "Alexandros Pappas",
"license": "ISC",
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/apappas1129/git-synced/issues"
},
"homepage": "https://github.com/apappas1129/git-synced#readme",
"dependencies": {
"@inquirer/prompts": "^8.5.2",
"cheerio": "^1.0.0",
"yocto-spinner": "^1.2.0",
"yoctocolors": "^2.1.1"
}
}