-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.19 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
{
"name": "eslint-config-dolmios",
"description": "A simple ESLint config with Prettier and a couple TSConfig setups",
"version": "1.11.1",
"author": "Jackson Dolman <[email protected]>",
"bugs": {
"url": "https://github.com/dolmios/eslint-config-dolmios/issues"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.8",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-typescript-sort-keys": "^3.2.0",
"prettier": "^3.3.3",
"typescript": "^5.6.2"
},
"homepage": "https://github.com/dolmios/eslint-config-dolmios#readme",
"keywords": [
"eslint",
"config",
"linting",
"typescript",
"prettier"
],
"files": [
"configs",
"index.js"
],
"license": "MIT",
"main": "index.js",
"prettier": "./configs/prettier.json",
"repository": {
"type": "git",
"url": "git+https://github.com/dolmios/eslint-config-dolmios.git"
},
"scripts": {
"lint": "eslint --ext .js",
"prettier": "prettier --write .",
"print": "eslint --print-config index.js > reference.txt",
"tidy": "pnpm lint && pnpm prettier"
}
}