-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.54 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "rove-fm",
"version": "0.3.0",
"description": "A fast, keyboard-driven terminal file manager — miller columns, live syntax-highlighted previews, and a UI that paints itself in your terminal's own colors.",
"type": "module",
"module": "src/index.tsx",
"bin": {
"rove": "bin/rove"
},
"files": [
"bin",
"src",
"README.md",
"LICENSE"
],
"keywords": [
"cli",
"tui",
"file-manager",
"terminal",
"ranger",
"lf",
"yazi",
"miller-columns",
"opentui",
"bun"
],
"homepage": "https://github.com/nexuls/rove#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nexuls/rove.git"
},
"bugs": {
"url": "https://github.com/nexuls/rove/issues"
},
"license": "MIT",
"engines": {
"bun": ">=1.0.0"
},
"preferGlobal": true,
"scripts": {
"dev": "bun run --watch src/index.tsx",
"start": "bun run src/index.tsx",
"lint": "biome lint .",
"format": "biome format --write .",
"check": "biome check --write .",
"build": "bun build src/cli.ts --compile --outfile rove",
"prepublishOnly": "biome check .",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish"
},
"devDependencies": {
"@biomejs/biome": "^2.5.1",
"@changesets/cli": "^2.31.0",
"@types/bun": "latest",
"@types/node": "^26.0.1",
"@types/react": "^19.2.17",
"@types/yargs": "^17.0.35"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@opentui/core": "^0.4.2",
"@opentui/react": "^0.4.2",
"jimp": "^1.6.1",
"react": "^19.2.6",
"yargs": "^18.0.0"
}
}