-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.25 KB
/
Copy pathpackage.json
File metadata and controls
125 lines (125 loc) · 3.25 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@morev/eslint-config",
"description": "Strict shareable ESLint configuration with reasonable defaults",
"type": "module",
"version": "40.0.0",
"engines": {
"node": ">=22"
},
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"author": {
"name": "Maxim Morev",
"email": "max.seainside@gmail.com"
},
"homepage": "https://github.com/MorevM/eslint-config#readme",
"repository": {
"type": "git",
"url": "https://github.com/MorevM/eslint-config"
},
"keywords": [
"eslint",
"eslintconfig",
"config",
"codestyle"
],
"files": [
"dist",
"bin"
],
"bin": "./bin/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./globs": {
"types": "./dist/globs.d.ts",
"import": "./dist/globs.js"
},
"./parsers": {
"types": "./dist/parsers.d.ts",
"import": "./dist/parsers.js"
},
"./plugins": {
"types": "./dist/plugins.d.ts",
"import": "./dist/plugins.js"
}
},
"main": "./dist/index.js",
"scripts": {
"prepare": "lefthook install",
"build": "tsup",
"test": "pnpm build && vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "release-it --disable-metrics"
},
"peerDependencies": {
"eslint": "^9.34.0",
"typescript": "^5.4.2"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"@html-eslint/eslint-plugin": "^0.46.0",
"@html-eslint/parser": "^0.46.0",
"@morev/eslint-disable-autofix": "^1.0.2",
"@morev/utils": "^3.13.1",
"@stylistic/eslint-plugin": "^5.2.3",
"@vitest/eslint-plugin": "^1.3.4",
"ansis": "^4.1.0",
"astro-eslint-parser": "^1.2.2",
"eslint-config-flat-gitignore": "^2.1.0",
"eslint-import-resolver-typescript": "^4.4.3",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-chai-friendly": "^1.1.0",
"eslint-plugin-command": "^3.3.0",
"eslint-plugin-cypress": "^5.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-jsdoc": "^54.1.1",
"eslint-plugin-jsonc": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-markdownlint": "^0.3.4",
"eslint-plugin-n": "^17.20.0",
"eslint-plugin-no-secrets": "^2.2.1",
"eslint-plugin-package-json": "^0.55.0",
"eslint-plugin-perfectionist": "^4.15.0",
"eslint-plugin-playwright": "^2.2.2",
"eslint-plugin-regexp": "^2.9.0",
"eslint-plugin-sonarjs": "^1.0.4",
"eslint-plugin-unicorn": "^60.0.0",
"eslint-plugin-vue": "^10.4.0",
"eslint-plugin-yml": "^1.18.0",
"eslint-rule-composer": "^0.3.0",
"globals": "^16.2.0",
"jsonc-eslint-parser": "^2.4.0",
"jsonc-parser": "^3.3.1",
"package-manager-detector": "^1.3.0",
"semver": "^7.7.2",
"typescript-eslint": "^8.34.1",
"vue-eslint-parser": "^10.1.3",
"yaml-eslint-parser": "^1.3.0"
},
"devDependencies": {
"@morev/commitlint-config": "^0.2.2",
"@morev/eslint-config": "workspace:^",
"@release-it/conventional-changelog": "8.0.2",
"@total-typescript/ts-reset": "^0.6.1",
"@types/node": "^22.18.12",
"@types/semver": "^7.7.0",
"eslint": "9.34.0",
"lefthook": "^1.11.14",
"release-it": "^19.0.3",
"tsup": "^8.5.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4",
"vue": "^3.5.17"
}
}