-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
89 lines (89 loc) · 2.63 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
{
"name": "@rotki/eslint-plugin",
"version": "0.7.0",
"packageManager": "[email protected]",
"type": "module",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/rotki/eslint-plugin/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/rotki/eslint-plugin.git"
},
"author": "Rotki Solutions GmbH <[email protected]>",
"files": [
"dist"
],
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"sideEffects": false,
"scripts": {
"clean": "rimraf .nyc_output coverage dist docs/.vitepress/dist",
"coverage": "nyc report --reporter lcov && opener coverage/lcov-report/index.html",
"generate": "node --experimental-specifier-resolution=node --loader ts-node/esm scripts/update-rule-docs.ts",
"generate:index": "node --experimental-specifier-resolution=node --loader ts-node/esm scripts/update-docs-index.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "unbuild",
"dev": "unbuild --stub",
"prepublishOnly": "pnpm run build",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"new": "node --experimental-specifier-resolution=node --loader ts-node/esm ./scripts/new-rule.ts",
"docs": "vitepress dev docs",
"docs:build": "pnpm run generate && pnpm run generate:index && vitepress build docs",
"prepare": "husky",
"typecheck": "tsc --noEmit",
"release": "bumpp -r --no-push"
},
"peerDependencies": {
"eslint": "^9.0.0"
},
"dependencies": {
"@typescript-eslint/utils": "8.23.0",
"debug": "4.4.0",
"eslint-compat-utils": "0.6.4",
"jsonc-eslint-parser": "2.4.0",
"scule": "1.3.0",
"vue-eslint-parser": "9.4.3",
"yaml-eslint-parser": "1.2.3"
},
"devDependencies": {
"@commitlint/cli": "19.7.1",
"@commitlint/config-conventional": "19.7.1",
"@rotki/eslint-config": "3.7.0",
"@types/debug": "4.1.12",
"@types/node": "20",
"@typescript-eslint/eslint-plugin": "8.23.0",
"@typescript-eslint/parser": "8.23.0",
"@typescript-eslint/rule-tester": "8.23.0",
"@vitest/coverage-v8": "3.0.5",
"bumpp": "10.0.1",
"debug": "4.4.0",
"eslint": "9.19.0",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"rimraf": "6.0.1",
"ts-node": "10.9.2",
"typescript": "5.7.3",
"unbuild": "3.3.1",
"vitepress": "1.6.3",
"vitest": "3.0.5"
},
"engines": {
"node": ">=20",
"pnpm": ">=9 <10"
},
"lint-staged": {
"*.{js,cjs,ts,vue,yml,json,md}": "eslint"
}
}