-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.05 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
{
"name": "@lzwme/git-repo-sync",
"version": "1.0.4",
"description": "a tool for git repo sync",
"main": "dist/index.js",
"typing": "dist/index.d.ts",
"scripts": {
"build": "tsc -P tsconfig.cjs.json"
},
"bin": {
"reposync": "bin/grs.js",
"grs": "bin/grs.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/lzwme/git-repo-sync.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.com"
},
"author": "renxia <lzwy0820@qq.com> (https://lzw.me)",
"license": "MIT",
"private": false,
"keywords": [
"git",
"repo",
"sync",
"git commit",
"repository-sync",
"synchronization"
],
"bugs": {
"url": "https://github.com/lzwme/git-repo-sync/issues"
},
"homepage": "https://github.com/lzwme/git-repo-sync#readme",
"directories": {
"doc": "docs",
"lib": "lib"
},
"dependencies": {
"commander": "^12.1.0",
"console-log-colors": "^0.5.0"
},
"devDependencies": {
"@types/node": "^20",
"typescript": "^5.4.5"
}
}