@cuiqg/eslint-config 2.1.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +24 -0
- package/README.md +45 -0
- package/dist/index.cjs +1117 -0
- package/dist/index.js +1042 -0
- package/package.json +72 -0
package/package.json
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cuiqg/eslint-config",
|
|
3
|
+
"version": "2.1.24",
|
|
4
|
+
"description": "ESLint config preset for @cuiqg",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "UNLICENSED",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/cuiqg/eslint-config.git"
|
|
10
|
+
},
|
|
11
|
+
"author": "Tsuiqg <i@tsuiqg.me>",
|
|
12
|
+
"files": [
|
|
13
|
+
"dist"
|
|
14
|
+
],
|
|
15
|
+
"main": "./dist/index.js",
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"require": "./dist/index.cjs",
|
|
19
|
+
"import": "./dist/index.js"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"publishConfig": {
|
|
23
|
+
"registry": "https://registry.npmjs.org",
|
|
24
|
+
"access": "public"
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "tsup",
|
|
28
|
+
"build:inspector": "npm run build && npx @eslint/config-inspector build --config eslint-inspector.config.js",
|
|
29
|
+
"dev": "tsup --watch --onSuccess \"npx @eslint/config-inspector --config eslint-inspector.config.js --open false\"",
|
|
30
|
+
"lint": "eslint .",
|
|
31
|
+
"up": "npx taze major -I",
|
|
32
|
+
"prepack": "npm run build",
|
|
33
|
+
"release": "bumpp && npm publish",
|
|
34
|
+
"prepare": "simple-git-hooks"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"@stylistic/eslint-plugin": "^2.9.0",
|
|
38
|
+
"@unocss/eslint-plugin": "^66.0.0",
|
|
39
|
+
"eslint-config-flat-gitignore": "^0.3.0",
|
|
40
|
+
"eslint-config-prettier": "^9.1.0",
|
|
41
|
+
"eslint-flat-config-utils": "^0.4.0",
|
|
42
|
+
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
43
|
+
"eslint-plugin-import-x": "^4.3.1",
|
|
44
|
+
"eslint-plugin-jsdoc": "^50.4.3",
|
|
45
|
+
"eslint-plugin-jsonc": "^2.16.0",
|
|
46
|
+
"eslint-plugin-n": "^17.11.1",
|
|
47
|
+
"eslint-plugin-perfectionist": "^3.9.1",
|
|
48
|
+
"eslint-plugin-prettier": "^5.2.1",
|
|
49
|
+
"eslint-plugin-unicorn": "^56.0.0",
|
|
50
|
+
"eslint-plugin-vue": "^9.29.1",
|
|
51
|
+
"eslint-plugin-yml": "^1.14.0",
|
|
52
|
+
"globals": "^15.11.0",
|
|
53
|
+
"jsonc-eslint-parser": "^2.4.0",
|
|
54
|
+
"local-pkg": "^0.5.0",
|
|
55
|
+
"unconfig": "^0.6.0",
|
|
56
|
+
"vue-eslint-parser": "^9.4.3",
|
|
57
|
+
"yaml-eslint-parser": "^1.2.3"
|
|
58
|
+
},
|
|
59
|
+
"devDependencies": {
|
|
60
|
+
"bumpp": "^9.7.1",
|
|
61
|
+
"eslint": "^9.13.0",
|
|
62
|
+
"lint-staged": "^15.2.10",
|
|
63
|
+
"simple-git-hooks": "^2.11.1",
|
|
64
|
+
"tsup": "^8.3.0"
|
|
65
|
+
},
|
|
66
|
+
"lint-staged": {
|
|
67
|
+
"*": "eslint --fix"
|
|
68
|
+
},
|
|
69
|
+
"simple-git-hooks": {
|
|
70
|
+
"pre-commit": "npx lint-staged"
|
|
71
|
+
}
|
|
72
|
+
}
|