-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.28 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.28 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
{
"name": "sync-kit",
"version": "1.0.0",
"description": "CLI utility for transferring code changes between computers via text archives",
"type": "module",
"main": "dist/index.js",
"bin": {
"sync-kit": "dist/index.js"
},
"scripts": {
"build": "tsc",
"bundle": "esbuild src/index.ts --bundle --platform=node --target=node20 --format=cjs --banner:js='#!/usr/bin/env node' --outfile=bundle/sync-kit.cjs && chmod +x bundle/sync-kit.cjs",
"start": "node dist/index.js",
"dev": "tsx src/index.ts"
},
"keywords": [
"sync",
"git",
"cli",
"transfer",
"archive"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"adm-zip": "^0.5.16",
"archiver": "^7.0.1",
"boxen": "^8.0.1",
"chalk": "^5.4.1",
"cli-table3": "^0.6.5",
"clipboardy": "^4.0.0",
"commander": "^13.1.0",
"figures": "^6.1.0",
"filesize": "^10.1.6",
"glob": "^11.0.1",
"inquirer": "^12.3.2",
"ora": "^8.1.1",
"picomatch": "^4.0.2",
"simple-git": "^3.27.0"
},
"devDependencies": {
"@types/adm-zip": "^0.5.7",
"@types/archiver": "^6.0.3",
"@types/node": "^22.12.0",
"@types/picomatch": "^3.0.1",
"esbuild": "^0.24.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
}
}