forked from Pacific-Agency/eslint-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.66 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@exer7um/eslint-config",
"version": "1.4.6",
"description": "Конфигурация ESLint",
"keywords": [
"eslint-config",
"eslint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ExEr7um/eslint-config.git"
},
"license": "MIT",
"author": {
"name": "Vasily Kuzin",
"email": "work@exer7um.com",
"url": "https://github.com/ExEr7um/prettier-config"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"LICENSE",
"README.md",
"dist"
],
"scripts": {
"build": "tsup",
"eslint": "eslint . --max-warnings=0 --flag unstable_ts_config",
"eslint:fix": "eslint . --max-warnings=0 --fix --flag unstable_ts_config",
"prettier": "prettier --check --ignore-unknown --no-error-on-unmatched-pattern *",
"prettier:write": "prettier --write --ignore-unknown --no-error-on-unmatched-pattern *",
"typecheck": "tsc --noEmit"
},
"prettier": "@exer7um/prettier-config",
"dependencies": {
"@nuxt/eslint": "^0.5.7",
"@vitest/eslint-plugin": "^1.1.7",
"eslint": "^9.12.0",
"eslint-config-flat-gitignore": "^0.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-depend": "^0.11.0",
"eslint-plugin-jsdoc": "^50.3.1",
"eslint-plugin-jsonc": "^2.16.0",
"eslint-plugin-perfectionist": "^3.8.0",
"eslint-plugin-sonarjs": "^1.0.4",
"eslint-plugin-tailwindcss": "^3.17.5",
"eslint-plugin-unicorn": "^56.0.0",
"eslint-plugin-vuejs-accessibility": "^2.4.1",
"eslint-plugin-yml": "^1.14.0"
},
"devDependencies": {
"@exer7um/prettier-config": "0.4.5",
"tsup": "8.3.0",
"typescript": "5.6.3"
}
}