-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 929 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 929 Bytes
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
{
"name": "eslint-plugin-react-refresh",
"version": "0.5.2",
"type": "module",
"license": "MIT",
"scripts": {
"build": "scripts/bundle.ts",
"test": "bun test",
"lint": "eslint --max-warnings 0",
"prettier": "bun prettier-ci --write",
"prettier-ci": "prettier --ignore-path=.gitignore --check '**/*.{js,ts,json,md,yml}'",
"ci": "tsl && bun lint && bun prettier-ci && bun test && bun run build && cd dist && publint"
},
"prettier": {
"experimentalOperatorPosition": "start"
},
"peerDependencies": {
"eslint": "^9 || ^10"
},
"devDependencies": {
"@arnaud-barre/eslint-config": "^6.1.2",
"@arnaud-barre/tsl-config": "^0.1.1",
"@typescript-eslint/parser": "^8.44.1",
"@typescript-eslint/utils": "^8.44.1",
"bun-types": "^1.2.22",
"eslint": "^9.36.0",
"prettier": "^3.6.2",
"publint": "^0.3.13",
"tsl": "^1.0.25",
"typescript": "~5.9"
}
}