-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.17 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
{
"name": "@brainylab/eslint-config",
"version": "2.6.4",
"description": "ESLint config for BrainyLab projects",
"keywords": [
"eslint",
"config",
"preset",
"brainylab"
],
"bugs": {
"url": "https://github.com/brainylab/eslint-config/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/brainylab/eslint-config.git"
},
"license": "MIT",
"author": {
"name": "André Felipe Schulle",
"email": "[email protected]"
},
"type": "module",
"exports": "./index.js",
"main": "./index.js",
"module": "./index.js",
"types": "./index.d.ts",
"scripts": {
"build": "npm run build:remove && npm run build:configs && npm run build:packages && npm run build:public-archives",
"build:configs": "npx tsup",
"build:packages": "npx tsx ./scripts/build-packages.ts",
"build:public-archives": "cp ./README.md ./dist && cp ./LICENSE ./dist",
"build:remove": "rm -rf ./dist",
"commit": "pnpm commit:add && pnpm commit:detail && pnpm commit:push",
"commit:add": "git add .",
"commit:detail": "cz",
"commit:push": "git push"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@eslint/js": "9.5.0",
"@next/eslint-plugin-next": "15.0.0-rc.0",
"eslint": "9.7.0",
"eslint-config-prettier": "9.1.0",
"eslint-define-config": "2.1.0",
"eslint-plugin-import-x": "0.5.2",
"eslint-plugin-n": "17.9.0",
"eslint-plugin-react": "7.34.3",
"eslint-plugin-react-hooks": "4.6.2",
"globals": "15.6.0",
"typescript-eslint": "7.14.1"
},
"devDependencies": {
"@brainylab/prettier-config": "0.2.4",
"@types/eslint-config-prettier": "6.11.3",
"@types/eslint__js": "8.42.3",
"@types/node": "20.14.9",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"fast-glob": "3.3.2",
"tsup": "8.1.0",
"tsx": "4.15.7",
"typescript": "5.5.2"
},
"peerDependencies": {
"eslint": ">=9.0.0",
"typescript": ">=4"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"packageManager": "[email protected]+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a",
"engines": {
"node": ">=18"
}
}