-
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.61 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.61 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": "@kud/revu-cli",
"version": "1.1.2",
"description": "Interactive terminal diff reviewer",
"module": "index.ts",
"type": "module",
"bin": {
"revu": "bin/revu.js"
},
"files": [
"bin/"
],
"scripts": {
"dev": "bun --hot index.ts",
"start": "bun index.ts",
"build": "bun build --compile --minify index.ts --outfile revu-bin",
"build:darwin-arm64": "bun build --compile --minify --target=bun-darwin-arm64 index.ts --outfile npm-packages/darwin-arm64/revu-bin",
"build:linux-x64": "bun build --compile --minify --target=bun-linux-x64 index.ts --outfile npm-packages/linux-x64/revu-bin",
"build:linux-arm64": "bun build --compile --minify --target=bun-linux-arm64 index.ts --outfile npm-packages/linux-arm64/revu-bin",
"build:all": "bun run build:darwin-arm64 && bun run build:linux-x64 && bun run build:linux-arm64",
"bump:patch": "bun scripts/bump.ts patch",
"bump:minor": "bun scripts/bump.ts minor",
"bump:major": "bun scripts/bump.ts major"
},
"optionalDependencies": {
"@kud/revu-cli-darwin-arm64": "1.1.2",
"@kud/revu-cli-linux-x64": "1.1.2",
"@kud/revu-cli-linux-arm64": "1.1.2",
"@opentui/core-darwin-arm64": "0.1.96",
"@opentui/core-linux-arm64": "0.1.96",
"@opentui/core-linux-x64": "0.1.96"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@opentui/core": "0.1.95"
},
"repository": {
"type": "git",
"url": "https://github.com/kud/revu-cli"
},
"license": "MIT",
"keywords": [
"diff",
"review",
"cli",
"tui"
]
}