-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.05 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.05 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "prefer-code-style",
"version": "3.10.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": "git+https://github.com/Codennnn/prefer-code-style.git"
},
"license": "MIT",
"author": "LeoKu <leokudev@gmail.com> (https://leoku.dev)",
"type": "module",
"exports": {
"./constants": {
"import": "./src/constants.mjs"
},
"./eslint/preset/*": {
"import": "./src/eslint/preset/*.mjs"
},
"./eslint/*": {
"import": "./src/eslint/*.mjs"
},
"./stylelint": {
"import": "./src/stylelint.mjs"
},
"./prettier": {
"import": "./src/prettier.mjs"
}
},
"files": [
"src"
],
"scripts": {
"clean": "rm -rf node_modules && rm -rf examples/*/node_modules",
"deps": "pnpm up --interactive --latest",
"lint": "pnpm lint:es & pnpm lint:prettier",
"lint:es": "eslint \"./**/*.{mjs,cjs,js,jsx,ts,tsx}\"",
"lint:prettier": "prettier --write \"!./examples/**\" \"**/*.{md,json,html}\"",
"test": "pnpm --filter \"./examples/Green-Wall\" lint && pnpm --filter \"./examples/react-jsx\" lint"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@babel/core": "^7.28.6",
"@eslint/js": "^10.0.1",
"@next/eslint-plugin-next": "~16.2.3",
"@stylistic/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^8.58.1",
"eslint": "~10.2.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-package-json": "^0.91.1",
"eslint-plugin-perfectionist": "^5.8.0",
"eslint-plugin-react": "~7.37.5",
"eslint-plugin-react-hooks": "~7.0.1",
"eslint-plugin-simple-import-sort": "~13.0.0",
"eslint-plugin-tailwindcss": "~3.18.2",
"eslint-plugin-vue": "^10.8.0",
"globals": "^17.5.0",
"postcss-less": "^6.0.0",
"postcss-scss": "^4.0.0",
"stylelint": "^17.7.0",
"stylelint-config-clean-order": "^8.0.1",
"stylelint-config-standard": "^40.0.0",
"stylelint-config-tailwindcss": "^1.0.1",
"stylelint-less": "^4.1.0",
"stylelint-prettier": "^5.0.3",
"stylelint-scss": "^7.0.0",
"typescript-eslint": "^8.58.1"
},
"peerDependencies": {
"react": ">=18.0.0",
"typescript": ">=5.0.0",
"vue": ">=3.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
},
"react": {
"optional": true
},
"vue": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^24.7.1",
"cz-conventional-changelog": "3.3.0",
"prefer-code-style": "workspace:*"
},
"packageManager": "pnpm@9.15.3",
"engines": {
"node": ">=20"
}
}