-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.08 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
{
"name": "@stoe/dotfiles",
"version": "0.0.0-development",
"description": "~~Stolen~~ Adopted from various dotfiles, changed and extended to my needs.",
"keywords": [],
"author": {
"name": "Stefan Stölzle",
"email": "[email protected]",
"url": "https://github.com/stoe"
},
"license": "MIT",
"repository": "https://github.com/stoe/.dotfiles",
"type": "module",
"engines": {
"node": ">=20",
"npm": ">=10"
},
"scripts": {
"format": "npx prettier --config-precedence prefer-file --write .",
"prepare": "husky"
},
"dependencies": {},
"devDependencies": {
"@github/prettier-config": "^0.0.6",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2"
},
"husky": {
"hooks": {
"pre-commit": "./.husky/pre-commit",
"pre-push": "./.husky/pre-push"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run format"
],
"*.{json,md}": [
"prettier --write"
],
"!(.github/copilot-instructions.md)": [
"prettier --write"
]
},
"prettier": "@github/prettier-config"
}