-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.03 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
{
"name": "eslint-plugin-remeda",
"version": "0.0.0-development",
"author": "Andrea Pontrandolfo <[email protected]>",
"description": "ESLint plugin for Remeda library.",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsup",
"typecheck": "tsc",
"lint": "eslint",
"knip": "knip",
"publint": "publint",
"test:watch": "vitest --ui",
"test": "vitest run",
"attw": "attw --pack .",
"qa": "pnpm typecheck && pnpm test && pnpm knip && pnpm publint && attw",
"nuke": "rm -rf node_modules pnpm-lock.yaml",
"semantic-release": "pnpm build && semantic-release"
},
"files": [
"README.md",
"dist",
"docs"
],
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndreaPontrandolfo/eslint-plugin-remeda.git"
},
"homepage": "https://github.com/AndreaPontrandolfo/eslint-plugin-remeda",
"bugs": "https://github.com/AndreaPontrandolfo/eslint-plugin-remeda/issues",
"peerDependencies": {
"eslint": ">=9.0.0"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.14.9",
"@vitest/coverage-v8": "^2.0.3",
"@vitest/ui": "^2.0.3",
"eslint": "9.10.0",
"eslint-config-sheriff": "^21.2.0",
"eslint-define-config": "^2.1.0",
"eslint-plugin-eslint-plugin": "^6.2.0",
"eslint-vitest-rule-tester": "^0.3.3",
"knip": "^5.29.1",
"prettier": "^3.3.2",
"publint": "^0.2.10",
"semantic-release": "^24.0.0",
"tsup": "^8.2.4",
"typescript": "^5.5.2",
"vitest": "^2.0.3"
},
"engines": {
"node": ">=20"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
},
"keywords": [
"eslint",
"eslint-plugin",
"eslint plugin",
"eslintplugin",
"remeda",
"functional",
"fp"
],
"license": "MIT",
"dependencies": {
"lodash-es": "^4.17.21"
}
}