@lntvow/eslint-config 10.1.8 → 10.2.0
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/package.json +23 -26
package/package.json
CHANGED
|
@@ -1,21 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lntvow/eslint-config",
|
|
3
|
-
"version": "10.
|
|
4
|
-
"type": "module",
|
|
3
|
+
"version": "10.2.0",
|
|
5
4
|
"description": "Customizable eslint configuration",
|
|
6
5
|
"keywords": [
|
|
7
6
|
"eslint-config"
|
|
8
7
|
],
|
|
9
|
-
"license": "MIT",
|
|
10
8
|
"repository": {
|
|
11
9
|
"type": "git",
|
|
12
10
|
"url": "https://github.com/lntvow/eslint-config.git"
|
|
13
11
|
},
|
|
14
|
-
"
|
|
15
|
-
|
|
16
|
-
],
|
|
17
|
-
"types": "./dist/index.d.ts",
|
|
18
|
-
"main": "./dist/index.js",
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"type": "module",
|
|
19
14
|
"exports": {
|
|
20
15
|
".": {
|
|
21
16
|
"types": "./dist/index.d.ts",
|
|
@@ -23,10 +18,12 @@
|
|
|
23
18
|
"default": "./dist/index.js"
|
|
24
19
|
}
|
|
25
20
|
},
|
|
26
|
-
"
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
21
|
+
"main": "./dist/index.js",
|
|
22
|
+
"module": "./dist/index.js",
|
|
23
|
+
"types": "./dist/index.d.ts",
|
|
24
|
+
"files": [
|
|
25
|
+
"dist"
|
|
26
|
+
],
|
|
30
27
|
"dependencies": {
|
|
31
28
|
"@eslint/compat": "^2.0.2",
|
|
32
29
|
"@eslint/js": "^10.0.1",
|
|
@@ -46,39 +43,39 @@
|
|
|
46
43
|
"local-pkg": "^1.1.2",
|
|
47
44
|
"typescript-eslint": "^8.56.1",
|
|
48
45
|
"vue-eslint-parser": "^10.4.0",
|
|
49
|
-
"@lntvow/eslint-plugin": "^10.
|
|
46
|
+
"@lntvow/eslint-plugin": "^10.2.0"
|
|
50
47
|
},
|
|
51
48
|
"devDependencies": {
|
|
52
|
-
"@
|
|
53
|
-
"@commitlint/config-conventional": "^20.5.3",
|
|
49
|
+
"@lntvow/cli": "^0.0.6",
|
|
54
50
|
"@types/estree": "^1.0.8",
|
|
55
51
|
"@types/node": "^20.19.33",
|
|
56
52
|
"axios": "^1.16.0",
|
|
57
|
-
"bumpp": "^11.0.1",
|
|
58
53
|
"cheerio": "1.2.0",
|
|
59
|
-
"commitizen": "^4.3.1",
|
|
60
|
-
"cz-conventional-changelog": "^3.3.0",
|
|
61
54
|
"eslint": "^10.3.0",
|
|
62
55
|
"eslint-typegen": "^2.3.1",
|
|
63
56
|
"jiti": "^2.7.0",
|
|
64
|
-
"lint-staged": "^16.4.0",
|
|
65
57
|
"node-cron": "^4.2.1",
|
|
66
|
-
"npm-run-all": "^4.1.5",
|
|
67
58
|
"prettier": "^3.8.3",
|
|
68
|
-
"simple-git-hooks": "^2.13.1",
|
|
69
59
|
"tsup": "^8.5.1",
|
|
70
60
|
"tsx": "^4.21.0",
|
|
71
61
|
"typescript": "^5.9.3",
|
|
72
62
|
"vue": "^3.5.33"
|
|
73
63
|
},
|
|
64
|
+
"peerDependencies": {
|
|
65
|
+
"eslint": ">=10.0.0",
|
|
66
|
+
"prettier": ">=3.1.0"
|
|
67
|
+
},
|
|
74
68
|
"scripts": {
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
69
|
+
"clean": "cli clean ./node_modules/ && pnpm -r clean",
|
|
70
|
+
"upgrade": "cli upgrade -u -f @lntvow/* && pnpm install",
|
|
71
|
+
"tidy": "cli tidy && pnpm -r tidy",
|
|
72
|
+
"commit": "git add -A && cli commit",
|
|
73
|
+
"release": "pnpm lint && git add -A && cli release package.json packages/*/package.json -a",
|
|
74
|
+
"changelog": "cli changelog -p angular -i CHANGELOG.md -s",
|
|
75
|
+
"version": "pnpm changelog && git add -A",
|
|
79
76
|
"lint:eslint": "eslint --fix --cache",
|
|
80
77
|
"lint:tsc": "tsc --noEmit",
|
|
81
|
-
"lint": "
|
|
78
|
+
"lint": "cli parallel lint:eslint lint:tsc",
|
|
82
79
|
"dev": "tsup --watch",
|
|
83
80
|
"typegen": "pnpm -r build && tsx scripts/typegen.ts",
|
|
84
81
|
"build": "pnpm typegen && tsup",
|