-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.02 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
{
"name": "@effective/eslint-cfg",
"version": "0.4.8",
"private": false,
"description": "A library for generating ESLint Flat Configs with React and TypeScript support.",
"keywords": [
"eslint",
"eslint-config",
"typescript",
"react",
"flat-config",
"linting"
],
"license": "Apache-2.0",
"author": {
"name": "Sebastian Werner",
"email": "s.werner@sebastian-software.de",
"url": "http://sebastian-software.de/werner"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsx src/build.ts && tsc -p tsconfig.build.json",
"check": "tsc --noEmit",
"fix": "eslint --fix .; prettier --write .",
"format": "prettier --write .",
"lint": "eslint .",
"prepublishOnly": "npm run build",
"release": "git push && release-it --ci patch",
"release:major": "git push && release-it --ci major",
"release:minor": "git push && release-it --ci minor",
"test": "vitest",
"update": "ncu -ui"
},
"dependencies": {
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-jsdoc": "^50.6.2",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-compiler": "19.0.0-beta-e552027-20250112",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-regexp": "^2.7.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"typescript-eslint": "^8.21.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@eslint/js": "^9.18.0",
"@types/node": "^22.10.7",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"jiti": "^2.4.2",
"npm-check-updates": "^17.1.14",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.8",
"release-it": "^18.1.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3",
"vitest": "^3.0.3"
},
"packageManager": "pnpm@9.15.4",
"engines": {
"node": ">=22.0.0"
},
"publishConfig": {
"access": "public"
}
}