-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
141 lines (141 loc) · 3.53 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "@nodecfdi/eslint-config",
"description": "Configuración base de Eslint para proyectos NodeCfdi",
"version": "2.2.3",
"type": "module",
"module": "./dist/esm/nodecfdi_config.js",
"files": [
"dist"
],
"exports": {
".": {
"import": {
"types": "./dist/esm/nodecfdi_config.d.ts",
"default": "./dist/esm/nodecfdi_config.js"
}
},
"./types": {
"import": {
"types": "./dist/esm/types.d.ts",
"default": "./dist/esm/types.js"
}
}
},
"imports": {
"#src/*": "./src/*.js"
},
"scripts": {
"prepare": "is-in-ci || husky",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"format:check": "prettier --check .",
"changelog": "auto-changelog -p && git add CHANGELOG.md",
"prebuild": "pnpm format:check && pnpm typecheck",
"build": "tshy",
"release": "np",
"version": "pnpm run build && pnpm run changelog"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@nodecfdi/prettier-config": "^1.2.0",
"@nodecfdi/tsconfig": "^1.7.2",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.8.7",
"auto-changelog": "^2.5.0",
"eslint": "^9.9.1",
"husky": "^9.1.6",
"is-in-ci": "^1.0.0",
"np": "^10.0.7",
"prettier": "^3.3.3",
"tshy": "^3.0.2",
"typescript": "^5.5.4"
},
"dependencies": {
"@adonisjs/eslint-plugin": "^2.0.0-beta.5",
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@eslint/js": "^9.14.0",
"@stylistic/eslint-plugin": "^2.10.1",
"@vitest/eslint-plugin": "^1.1.7",
"eslint-config-flat-gitignore": "^0.3.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import-x": "^4.4.0",
"eslint-plugin-promise": "^7.1.0",
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sonarjs": "^2.0.4",
"eslint-plugin-unicorn": "^56.0.0",
"eslint-plugin-vue": "^9.30.0",
"typescript-eslint": "^8.12.2",
"vue-eslint-parser": "^9.4.3"
},
"peerDependencies": {
"eslint": "^9.0.0",
"typescript": "^5.5.4"
},
"author": "Fernando Isidro <luffynando@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/nodecfdi/eslint-config",
"repository": {
"type": "git",
"url": "https://github.com/nodecfdi/eslint-config.git"
},
"bugs": {
"url": "https://github.com/nodecfdi/eslint-config/issues"
},
"keywords": [
"eslint",
"eslint_config",
"nodecfdi",
"shared",
"config"
],
"engines": {
"node": ">=20"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"prettier": "@nodecfdi/prettier-config",
"packageManager": "pnpm@9.12.3",
"pnpm": {
"overrides": {
"eslint-import-resolver-typescript>eslint-plugin-import": "-"
},
"peerDependencyRules": {
"allowAny": [
"eslint",
"@typescript-eslint/parser"
]
}
},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"auto-changelog": {
"template": "keepachangelog",
"hideCredit": true
},
"np": {
"message": "chore(release): :tada: %s",
"tag": "latest",
"branch": "main",
"yolo": true
},
"tshy": {
"selfLink": false,
"dialects": [
"esm"
],
"exports": {
".": "./src/nodecfdi_config.ts",
"./types": "./src/types.ts"
}
}
}