-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1013 Bytes
/
package.json
File metadata and controls
52 lines (52 loc) · 1013 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "dotbash",
"version": "0.1.1",
"description": "A lightweight dotfiles manager that generates self-contained shell scripts",
"author": "Alin Ali Hassan <hassanalinali@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/alinalihassan/dotbash"
},
"bugs": {
"url": "https://github.com/alinalihassan/dotbash/issues"
},
"homepage": "https://github.com/alinalihassan/dotbash#readme",
"type": "module",
"main": "./build/cli.js",
"bin": {
"dotbash": "./build/cli.js"
},
"files": [
"build",
"schema.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "bun run scripts/build.ts",
"prepublishOnly": "bun run build"
},
"keywords": [
"dotfiles",
"installation",
"setup",
"configuration",
"shell",
"bash",
"symlinks"
],
"engines": {
"bun": "^1.3.4"
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"commander": "^14.0.2",
"zod": "^4.1.13"
}
}