-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
128 lines (128 loc) · 3.72 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
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
126
127
128
{
"name": "@rotki/eslint-config",
"version": "3.5.0",
"packageManager": "pnpm@9.13.2",
"type": "module",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/rotki/eslint-config/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/rotki/eslint-config.git"
},
"author": "Rotki Solutions GmbH <info@rotki.com>",
"files": [
"dist"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "pnpm run typegen && tsup src/index.ts --format esm,cjs --clean --dts",
"stub": "tsup src/index.ts --format esm",
"dev": "tsup src/index.ts --format esm,cjs --watch & npx @eslint/config-inspector --config eslint.config.mjs",
"watch": "tsup --format esm,cjs --watch",
"lint": "eslint --flag unstable_ts_config .",
"prepack": "pnpm run build",
"release": "bumpp -r --no-push",
"prepare": "husky",
"typegen": "esno scripts/typegen.ts",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"@intlify/eslint-plugin-vue-i18n": "^3.0.0",
"@prettier/plugin-xml": "^3.4.1",
"@rotki/eslint-plugin": ">=0.4.0",
"eslint": ">=9.10.0",
"eslint-plugin-cypress": ">=3.0.0",
"eslint-plugin-storybook": ">=0.10.0"
},
"peerDependenciesMeta": {
"@intlify/eslint-plugin-vue-i18n": {
"optional": true
},
"@prettier/plugin-xml": {
"optional": true
},
"@rotki/eslint-plugin": {
"optional": true
},
"eslint-plugin-cypress": {
"optional": true
},
"eslint-plugin-storybook": {
"optional": true
}
},
"dependencies": {
"@antfu/eslint-define-config": "1.23.0-2",
"@antfu/install-pkg": "0.4.1",
"@clack/prompts": "0.8.1",
"@eslint-community/eslint-plugin-eslint-comments": "4.4.1",
"@eslint-types/typescript-eslint": "7.5.0",
"@eslint-types/unicorn": "52.0.0",
"@eslint/markdown": "6.2.1",
"@stylistic/eslint-plugin": "2.11.0",
"@typescript-eslint/eslint-plugin": "8.15.0",
"@typescript-eslint/parser": "8.15.0",
"@vitest/eslint-plugin": "1.1.10",
"eslint-config-flat-gitignore": "0.3.0",
"eslint-config-prettier": "9.1.0",
"eslint-flat-config-utils": "0.4.0",
"eslint-merge-processors": "0.1.0",
"eslint-plugin-antfu": "2.7.0",
"eslint-plugin-format": "0.1.2",
"eslint-plugin-html": "8.1.2",
"eslint-plugin-import-x": "4.4.2",
"eslint-plugin-jsonc": "2.18.2",
"eslint-plugin-n": "17.13.2",
"eslint-plugin-no-only-tests": "3.3.0",
"eslint-plugin-perfectionist": "3.9.1",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-unicorn": "56.0.1",
"eslint-plugin-unused-imports": "4.1.4",
"eslint-plugin-vue": "9.31.0",
"eslint-plugin-yml": "1.15.0",
"eslint-processor-vue-blocks": "0.1.2",
"globals": "15.12.0",
"jsonc-eslint-parser": "2.4.0",
"local-pkg": "0.5.1",
"prettier": "3.3.3",
"vue-eslint-parser": "9.4.3",
"yaml-eslint-parser": "1.2.3"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@eslint/config-inspector": "0.5.6",
"@rotki/eslint-config": "workspace:*",
"@types/node": "20.17.6",
"@types/prompts": "2.4.9",
"bumpp": "9.8.1",
"eslint": "9.15.0",
"eslint-plugin-regexp": "2.7.0",
"eslint-typegen": "0.3.2",
"esno": "4.8.0",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"rimraf": "6.0.1",
"tsup": "8.3.5",
"typescript": "5.6.3"
},
"engines": {
"node": ">=20 <21",
"pnpm": ">=9 <10"
},
"resolutions": {
"@typescript-eslint/utils": "^8.15.0"
},
"lint-staged": {
"*": "eslint --flag unstable_ts_config --fix"
}
}