-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.39 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
{
"name": "@krauters/eslint-config",
"version": "1.7.0",
"description": "TypeScript linting configuration.",
"author": "Colten Krauter <coltenkrauter>",
"main": "dist/eslint.config.js",
"homepage": "https://github.com/krauters/eslint-config",
"repository": {
"type": "git",
"url": "git+https://github.com/krauters/eslint-config.git"
},
"scripts": {
"build": "tsc",
"fix": "npm run lint -- --fix",
"lint": "npx eslint **/*.ts **/*.tsx *.js",
"prepublishOnly": "npm run build",
"test": "npm run lint",
"upgrade:all": "npx npm-check-updates --upgrade --reject eslint && npm install"
},
"keywords": [
"eslint",
"eslint-config",
"krauters",
"linting",
"lint"
],
"license": "ISC",
"dependencies": {
"@eslint-react/eslint-plugin": "^1.23.2",
"@eslint/js": "^9.18.0",
"@stylistic/eslint-plugin-ts": "^2.13.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^9.15.0",
"eslint-define-config": "^2.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.1",
"eslint-plugin-perfectionist": "^4.6.0",
"eslint-plugin-prettier": "^5.2.2",
"eslint-plugin-project-structure": "^3.13.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
},
"files": [
"dist"
],
"type": "commonjs",
"devDependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0"
}
}