-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
86 lines (86 loc) · 2.47 KB
/
package.json
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@brlt/dotfiles",
"version": "0.12.1",
"license": "MIT",
"author": {
"name": "Nicholas Berlette",
"email": "nick@berlette.com",
"url": "https://github.com/nberlette"
},
"private": true,
"description": "Nick's personal dotfiles. Automated configuration for development on macOS, Gitpod, or Codespaces.",
"repository": "nberlette/dotfiles",
"bugs": "https://github.com/nberlette/dotfiles/issues",
"readme": "https://github.com/nberlette/dotfiles#readme",
"homepage": "https://dotfiles.ml",
"keywords": [
"dotfiles",
"gitpod",
"codespaces",
"macos",
"config",
"bash",
"shell"
],
"packageManager": "pnpm@7.7.0",
"publishConfig": {
"access": "public"
},
"workspaces": [
"./",
"docs/",
"packages/*"
],
"eslintConfig": {
"extends": [
"@brlt"
]
},
"prettier": "@brlt/prettier/bash",
"scripts": {
"preinstall": "npx -y only-allow pnpm",
"postinstall": "which shfmt &>/dev/null || brew install --quiet --overwrite shfmt &>/dev/null; which deno &>/dev/null || brew install --quiet --overwrite deno &>/dev/null;",
"test": "pnpm -r run test; run-s check:*",
"build": "pnpm -r run build",
"dev": "pnpm -r run dev",
"lint": "pnpm -r run lint; eslint .",
"lint:fix": "pnpm -r run lint:fix; eslint --fix .",
"clean": "rm -rf node_modules _installs .backup '.*.log'",
"shfmt": "shfmt -ci -bn -sr -kp -fn -ln=bash -i 4 -s",
"shellcheck": "shellcheck --color=always --shell=bash -x",
"check": "run-s check:* lint",
"check:shfmt": "nr shfmt -d .path .exports .functions '.bash*' install.sh",
"check:shellsheck": "nr shellcheck .path .exports .functions '.bash*' install.sh",
"check:prettier": "prettier -c .",
"format:shfmt": "nr shfmt -w .path .exports .functions '.bash*' install.sh",
"format:prettier": "prettier -w .",
"format": "run-s format:* lint:fix"
},
"devDependencies": {
"@brlt/eslint-config": "^0.0.4",
"@brlt/n": "^0.1.1",
"@brlt/prettier": "~1.8.2",
"@brlt/utils": "^0.0.1",
"eslint": "^8.21.0",
"esno": "^0.16.3",
"npm-run-all": "4.1.5",
"pnpm": "^7.8.0",
"prettier": "^2.7.1",
"prettier-plugin-sh": "^0.12.8",
"shellcheck": "^1.1.0",
"templette": "^1.0.0",
"tsup": "^6.2.1",
"typescript": "^4.7.4",
"zx": "^7.0.8"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@types/react",
"react",
"react-dom",
"vue"
]
}
}
}