-
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.25 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.25 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": "formalconf",
"version": "2.0.22",
"description": "Dotfiles management TUI for macOS and Linux - config management, package sync, and theme switching",
"type": "module",
"main": "./dist/formalconf.js",
"bin": {
"formalconf": "dist/formalconf.js"
},
"files": [
"dist"
],
"scripts": {
"formalconf": "bun run src/cli/formalconf.tsx",
"config": "bun run src/cli/config-manager.ts",
"pkg-sync": "bun run src/cli/pkg-sync.ts",
"pkg-lock": "bun run src/cli/pkg-lock.ts",
"theme": "bun run src/cli/set-theme.ts",
"typecheck": "bun tsc --noEmit",
"build": "bun run scripts/build.ts",
"prepublishOnly": "bun run build"
},
"engines": {
"node": ">=20.11.0"
},
"keywords": [
"dotfiles",
"config",
"stow",
"homebrew",
"macos",
"tui",
"cli",
"themes"
],
"author": "Kyan De Sutter <hello@formalsnake.dev>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/FormalSnake/formalconf.git"
},
"dependencies": {
"ink": "^5.0.1",
"@inkjs/ui": "^2.0.0",
"react": "^18.3.1"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^20.0.0",
"@types/react": "^18.3.0",
"typescript": "^5.0.0"
}
}