-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1011 Bytes
/
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
{
"name": "@hugomods/eslint-config",
"version": "0.1.4",
"repository": {
"type": "git",
"url": "git+https://github.com/hugomods/eslint-config.git"
},
"author": "Razon Yang <razonyang@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hugomods/eslint-config/issues"
},
"homepage": "https://github.com/hugomods/eslint-config",
"main": "index.mjs",
"dependencies": {
"@eslint/js": "^9.16.0",
"@tsconfig/recommended": "^1.0.8",
"eslint": "^9.16.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0"
},
"scripts": {
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:fix": "npm run lint:eslint:fix && npm run lint:prettier:fix",
"lint:eslint": "eslint .",
"lint:eslint:fix": "eslint . --fix",
"lint:prettier": "npx prettier . --check",
"lint:prettier:fix": "npx prettier . --write"
},
"devDependencies": {
"@hugomods/prettier-config": "^0.2.0"
},
"prettier": "@hugomods/prettier-config"
}