-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 731 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 731 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
{
"name": "suitup",
"version": "2.0.0",
"description": "Opinionated macOS development environment setup tool with beautiful TUI",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"start": "node src/cli.js",
"setup": "node src/cli.js setup",
"append": "node src/cli.js append",
"verify": "node src/cli.js verify",
"clean": "node src/cli.js clean",
"test": "zsh tests/perf.zsh && vitest run",
"test:watch": "vitest"
},
"keywords": ["dotfiles", "macos", "setup", "zsh", "cli"],
"author": "ChangeHow",
"license": "Apache-2.0",
"dependencies": {
"@clack/prompts": "^0.11.0",
"picocolors": "^1.1.1"
},
"devDependencies": {
"vitest": "^3.1.1"
}
}