-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.07 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.07 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
{
"name": "oxlint-plugin-complexity",
"version": "2.1.3",
"description": "Cyclomatic and cognitive complexity rules for oxlint",
"keywords": [
"oxlint",
"oxc",
"eslint",
"plugin",
"complexity",
"cyclomatic",
"cognitive",
"code-quality"
],
"author": "itaymendel",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/itaymendel/oxlint-plugin-complexity.git"
},
"bugs": {
"url": "https://github.com/itaymendel/oxlint-plugin-complexity/issues"
},
"homepage": "https://github.com/itaymendel/oxlint-plugin-complexity#readme",
"type": "module",
"imports": {
"#src/*": "./src/*"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./standalone": {
"import": "./dist/standalone.js",
"types": "./dist/standalone.d.ts"
},
"./diff": {
"import": "./dist/diff.js",
"types": "./dist/diff.d.ts"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest",
"test:run": "vitest run",
"lint": "pnpm run build && oxlint src/",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepublishOnly": "pnpm run build",
"prepare": "husky"
},
"dependencies": {
"@oxlint/plugins": "^1.66.0"
},
"devDependencies": {
"@types/node": "^22.19.17",
"diff": "^9.0.0",
"estree-walker": "^3.0.3",
"husky": "^9.1.7",
"oxc-parser": "^0.132.0",
"oxlint": "^1.62.0",
"prettier": "3.8.3",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"peerDependencies": {
"diff": ">=5.0.0",
"estree-walker": ">=3.0.0",
"oxc-parser": ">=0.60.0"
},
"peerDependenciesMeta": {
"diff": {
"optional": true
},
"estree-walker": {
"optional": true
},
"oxc-parser": {
"optional": true
}
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@10.33.2"
}