-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
89 lines (89 loc) · 2.54 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "prefer-code-style",
"version": "3.6.0",
"description": "A collection of configuration files containing prettier, eslint, stylelint",
"keywords": [
"code lint",
"lint set",
"eslint",
"stylelint",
"prettier"
],
"homepage": "https://github.com/Codennnn/prefer-code-style#readme",
"bugs": {
"url": "https://github.com/Codennnn/prefer-code-style/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Codennnn/prefer-code-style.git"
},
"license": "MIT",
"author": "LeoKu <[email protected]> (https://leoku.dev)",
"exports": {
"./constants": {
"import": "./src/constants.mjs"
},
"./eslint/*": {
"import": "./src/eslint/*.mjs"
},
"./eslint/preset/*": {
"import": "./src/eslint/preset/*.mjs"
},
"./eslint/rules/*": {
"import": "./src/eslint/rules/*.mjs"
},
"./stylelint": {
"import": "./src/stylelint.mjs"
}
},
"files": [
"src"
],
"scripts": {
"deps": "pnpm up --interactive --latest",
"lint": "pnpm lint:es & pnpm lint:prettier",
"lint:es": "eslint \"./**/*.{js,jsx,ts,tsx}\"",
"lint:prettier": "prettier --write \"!./examples/**\" \"**/*.{md,json,html}\"",
"test": "cd \"./examples/green-wall\" && pnpm lint && cd \"../react-jsx\" && pnpm lint"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@babel/core": "^7.25.2",
"@eslint/js": "^9.23.0",
"@next/eslint-plugin-next": "~15.2.4",
"@stylistic/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^8.29.0",
"eslint": "~9.23.0",
"eslint-import-resolver-typescript": "^4.3.1",
"eslint-plugin-import-x": "^4.10.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-package-json": "^0.29.0",
"eslint-plugin-react": "~7.37.4",
"eslint-plugin-react-hooks": "~5.2.0",
"eslint-plugin-simple-import-sort": "~12.1.1",
"eslint-plugin-tailwindcss": "~3.18.0",
"eslint-plugin-vue": "^10.0.0",
"globals": "^16.0.0",
"stylelint": "^16.16.0",
"stylelint-config-clean-order": "^7.0.0",
"stylelint-config-standard": "^37.0.0",
"stylelint-config-tailwindcss": "^1.0.0",
"stylelint-less": "^3.0.1",
"stylelint-prettier": "^5.0.3",
"stylelint-scss": "^6.11.1",
"typescript-eslint": "^8.28.0"
},
"devDependencies": {
"@types/node": "^22.13.13",
"cz-conventional-changelog": "3.3.0",
"prefer-code-style": "workspace:*"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
}
}