-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.37 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
{
"name": "nxtupdate",
"version": "1.0.6",
"description": "Universal package updater for macOS - auto-detects and updates everything",
"type": "module",
"bin": {
"nxtupdate": "./src/cli.ts"
},
"files": [
"src"
],
"engines": {
"bun": ">=1.0.0"
},
"scripts": {
"start": "bun run src/cli.ts",
"dev": "bun run src/cli.ts",
"test": "bun test",
"build": "bun build src/cli.ts --compile --outfile dist/nxtupdate"
},
"keywords": [
"macos",
"updater",
"homebrew",
"npm",
"cargo",
"pip",
"package-manager",
"cli",
"bun"
],
"author": "scorpion7slayer",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/scorpion7slayer/NxtUpdate.git"
},
"homepage": "https://github.com/scorpion7slayer/NxtUpdate#readme",
"bugs": {
"url": "https://github.com/scorpion7slayer/NxtUpdate/issues"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"react-devtools-core": "^7.0.1"
},
"overrides": {
"shell-quote": "1.10.0",
"ws": "8.21.1"
},
"dependencies": {
"@inquirer/prompts": "^8.3.2",
"chalk": "^5.6.2",
"commander": "^13.1.0",
"ink": "^6.8.0",
"ink-select-input": "^6.2.0",
"ink-spinner": "^5.0.0",
"listr2": "^8.3.3",
"ora": "^8.2.0",
"react": "^19.2.4"
}
}