-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.35 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
{
"name": "@stefanobartoletti/eslint-config",
"type": "module",
"version": "4.0.0",
"packageManager": "pnpm@9.15.5",
"description": "",
"author": "Stefano Bartoletti (https://github.com/stefanobartoletti/)",
"license": "MIT",
"repository": "stefanobartoletti/eslint-config",
"keywords": [
"eslint",
"eslint-config",
"eslintconfig"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "config-inspector",
"release": "release-it",
"release:beta": "release-it --no-git.requireBranch --preRelease=beta",
"commitlint": "commitlint --edit",
"prepare": "husky"
},
"peerDependencies": {
"eslint": ">=9.19.0",
"eslint-plugin-tailwindcss": "^3.18.0"
},
"peerDependenciesMeta": {
"eslint-plugin-tailwindcss": {
"optional": true
}
},
"dependencies": {
"@antfu/eslint-config": "^4.1.1",
"eslint-plugin-format": "^1.0.1"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@eslint/config-inspector": "^1.0.0",
"@release-it/conventional-changelog": "^10.0.0",
"eslint": "^9.19.0",
"eslint-plugin-tailwindcss": "^3.18.0",
"husky": "^9.1.7",
"release-it": "^18.1.2"
}
}