-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.41 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
{
"name": "@jimmy.codes/prettier-config",
"version": "1.3.0",
"description": "My personal prettier config",
"keywords": [
"prettier"
],
"repository": {
"type": "git",
"url": "https://github.com/jimmy-guzman/prettier-config.git"
},
"license": "MIT",
"sideEffects": false,
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"format": "prettier --config ./index.js --check --cache .",
"format:fix": "prettier --config ./index.js --write --cache .",
"prepack": "clean-pkg-json",
"prepare": "is-ci || lefthook install"
},
"dependencies": {
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-tailwindcss": "0.6.8"
},
"devDependencies": {
"@commitlint/config-conventional": "19.6.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.1",
"clean-pkg-json": "1.2.0",
"commitlint": "19.6.0",
"gitzy": "5.5.0",
"is-ci": "3.0.1",
"lefthook": "1.8.5",
"prettier": "3.4.2",
"semantic-release": "24.2.0",
"typescript": "5.7.2"
},
"peerDependencies": {
"prettier": "^3.0"
},
"packageManager": "pnpm@9.14.4",
"engines": {
"node": ">= 20"
},
"publishConfig": {
"access": "public"
},
"gitzy": {
"useCommitlintConfig": true
}
}