-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.36 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
{
"name": "dotfiles",
"version": "1.0.0",
"description": "Doting Dotfiles",
"homepage": "https://github.com/nozomiishii/dotfiles#readme",
"bugs": {
"url": "https://github.com/nozomiishii/dotfiles/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nozomiishii/dotfiles.git"
},
"license": "MIT",
"author": "Nozomi Ishii",
"type": "module",
"main": "install.sh",
"scripts": {
"format": "pnpm prettier . --check",
"format:fix": "pnpm prettier . --write",
"preinstall": "corepack enable pnpm yarn npm",
"postinstall": "lefthook install",
"lint": "pnpm markdownlint",
"lint:fix": "pnpm markdownlint:fix",
"markdownlint": "npx -y markdownlint-cli2@latest '**/*.md' '#node_modules'",
"markdownlint:fix": "npx -y markdownlint-cli2-fix@latest '**/*.md' '#node_modules'",
"prettier": "prettier --ignore-unknown",
"test": "node --version"
},
"devDependencies": {
"@evilmartians/lefthook": "1.10.10",
"@nozomiishii/commitlint-config": "0.0.5",
"@nozomiishii/lefthook-config": "0.2.2",
"@nozomiishii/markdownlint-cli2-config": "0.3.1",
"@nozomiishii/prettier-config": "0.6.2",
"markdownlint-cli2": "0.17.2"
},
"packageManager": "[email protected]",
"engines": {
"node": "22.14.0",
"pnpm": "10.4.0"
},
"volta": {
"node": "22.14.0",
"pnpm": "10.4.0"
}
}