-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.24 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
{
"name": "@valora/eslint-config-typescript",
"version": "0.0.0-semantic-release",
"main": "index.js",
"author": "Valora Inc",
"license": "Apache-2.0",
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/valora-inc/eslint-config-typescript.git"
},
"files": [
"index.js"
],
"scripts": {
"format": "prettier --log-level error --write .",
"format:check": "prettier --check .",
"release": "semantic-release"
},
"dependencies": {
"@typescript-eslint/parser": "^8.19.1"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": ">=4.0.0",
"eslint": ">=7.0.0",
"eslint-plugin-import": ">=2.0.0",
"eslint-plugin-jest": ">=26.1.1",
"eslint-plugin-react": ">=7.0.0",
"eslint-plugin-react-hooks": ">=4.0.0",
"eslint-plugin-react-native": ">=3.0.0"
},
"devDependencies": {
"@valora/prettier-config": "^0.0.1",
"conventional-changelog-conventionalcommits": "^8.0.0",
"prettier": "^3.4.2",
"semantic-release": "^24.2.0"
},
"prettier": "@valora/prettier-config",
"release": {
"branches": [
"main"
],
"preset": "conventionalcommits"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}