-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.15 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
{
"name": "@leukeleu/eslint-config",
"type": "module",
"exports": {
"./configs/*": "./configs/*.js"
},
"repository": "https://github.com/leukeleu/eslint-config",
"version": "4.0.0",
"description": "Reusable Eslint config for Leukeleu projects",
"scripts": {
"prettier": "prettier . --cache",
"lint:prettier": "npm run prettier -- --check",
"lintfix:prettier": "npm run prettier -- --write",
"lint:js": "eslint --cache",
"lintfix:js": "npm run lint:js -- --fix",
"lint": "npm run lint:prettier && npm run lint:js",
"lintfix": "npm run lintfix:prettier && npm run lintfix:js",
"test": "vitest"
},
"keywords": [
"config",
"eslint",
"javascript",
"vue2",
"vue3",
"nuxt3"
],
"license": "MIT",
"dependencies": {
"@babel/eslint-parser": "~7.25.1",
"@eslint/js": "~9.17.0",
"eslint": "~9.17.0",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-vue": "~9.32.0",
"eslint-plugin-vuejs-accessibility": "~2.4.1",
"globals": "~15.14.0",
"typescript-eslint": "~8.19.0"
},
"devDependencies": {
"@leukeleu/prettier-config": "~3.2.0",
"vitest": "^2.1.8"
}
}