forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 882 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 882 Bytes
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
{
"name": "@rushstack/zipsync",
"version": "0.2.4",
"description": "CLI tool for creating and extracting ZIP archives with intelligent filesystem synchronization",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack.git",
"directory": "apps/zipsync"
},
"bin": {
"zipsync": "./bin/zipsync"
},
"license": "MIT",
"scripts": {
"start": "node lib/start",
"build": "heft build --clean",
"_phase:build": "heft run --only build -- --clean",
"_phase:test": "heft run --only test -- --clean"
},
"dependencies": {
"@rushstack/terminal": "workspace:*",
"@rushstack/ts-command-line": "workspace:*",
"typescript": "~5.8.2",
"@rushstack/lookup-by-path": "workspace:*"
},
"devDependencies": {
"@rushstack/heft": "workspace:*",
"eslint": "~9.37.0",
"local-node-rig": "workspace:*"
}
}