-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
95 lines (95 loc) · 2.34 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
{
"name": "eslint-plugin-filename-export",
"version": "1.0.4",
"description": "ESLint plugin that ensures non-index filenames match to at least one named export.",
"main": "dist/index.js",
"files": [
"dist",
"src"
],
"sideEffects": false,
"scripts": {
"build": "tsc",
"coverage": "vitest run --coverage",
"lint": "eslint --fix ./src; prettier --write ./src --loglevel error",
"lint:check": "eslint --max-warnings 10 ./src && prettier --check ./src",
"prebuild": "rm -rf dist",
"prepare": "husky install",
"size": "node scripts/esbuild.js",
"test": "vitest",
"test:run": "vitest --run",
"test:verbose": "vitest --reporter=verbose"
},
"keywords": [
"ESLint",
"esm",
"export",
"filename"
],
"author": {
"name": "Eric Kwoka",
"email": "[email protected]",
"url": "https://thekwoka.net/"
},
"license": "MIT",
"repository": "github:ekwoka/eslint-plugin-filename-export",
"bugs": {
"url": "https://github.com/ekwoka/eslint-plugin-filename-export/issues"
},
"homepage": "https://github.com/ekwoka/eslint-plugin-filename-export",
"dependencies": {
"@typescript-eslint/utils": "^5.52.0"
},
"peerDependencies": {
"eslint": "^6.0.0 || ^7.0.0 || >=8.0.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@types/node": "20.17.3",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"@vitest/coverage-c8": "0.33.0",
"esbuild": "0.24.0",
"eslint": "8.57.1",
"eslint-plugin-filename-export": "1.0.4",
"husky": "8.0.3",
"lint-staged": "14.0.1",
"prettier": "3.3.3",
"typescript": "5.6.3",
"vite": "4.5.5",
"vite-tsconfig-paths": "4.3.2",
"vitest": "0.34.6"
},
"publishConfig": {
"access": "public"
},
"prettier": {
"singleQuote": true,
"bracketSameLine": true,
"plugins": [
"@trivago/prettier-plugin-sort-imports"
],
"importOrder": [
"node:.*",
"@/lib(.*)$",
"@/utils(.*)$",
"^[./]"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": true
},
"lint-staged": {
"*.{js,ts,mjs}": [
"eslint --fix",
"prettier --write"
],
"*.json": [
"prettier --write"
]
},
"pnpm": {
"overrides": {
"typescript@<5.0.4": "^5.0.4"
}
}
}