-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.49 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.49 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
54
55
56
57
58
59
{
"name": "prettier-husky-lint-staged-installer",
"version": "1.3.2",
"type": "module",
"author": "Ryota Murakami <dojce1048@gmail.com> (https://ryota-murakami.github.io/)",
"repository": {
"type": "git",
"url": "git+https://github.com/laststance/prettier-husky-lint-staged-installer.git"
},
"dependencies": {
"@clack/prompts": "^1.0.0",
"execa": "^9.0.0"
},
"devDependencies": {
"all-contributors-cli": "^6.26.1",
"eslint": "^9.0.0",
"eslint-config-ts-prefixer": "^4.0.0",
"husky": "^9.0.5",
"lint-staged": "^16.0.0",
"prettier": "^3.0.3",
"release-it": "^19.0.1",
"typescript": "^5.2.2",
"vitest": "^4.0.1"
},
"files": [
"bin",
"templates",
"package.json",
"pnpm-lock.json",
"LICENSE",
"README.md",
"node_modules",
".prettierrc",
".prettierignore"
],
"bin": {
"prettier-husky-lint-staged-installer": "bin/cli.js"
},
"bugs": {
"url": "https://github.com/laststance/prettier-husky-lint-staged-installer/issues"
},
"description": "prettier-husky-lint-staged-installer",
"homepage": "https://github.com/laststance/prettier-husky-lint-staged-installer",
"license": "MIT",
"scripts": {
"release": "release-it",
"prepare": "husky",
"prettier": "prettier --ignore-unknown --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run"
},
"volta": {
"node": "20.19.1"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
}
}