-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.49 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 3.49 KB
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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@krudi/eslint-config",
"version": "0.1.8",
"private": false,
"description": "Reusable ESLint configuration to enforce consistent code style and standards across projects.",
"keywords": [
"eslint",
"eslintconfig",
"lint",
"linter",
"code-style",
"coding-standards",
"configuration",
"prettier",
"typescript",
"react",
"nextjs",
"expo",
"turborepo",
"shared-config"
],
"homepage": "https://github.com/krudi/shared-configs#readme",
"bugs": {
"url": "https://github.com/krudi/shared-config/sissues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krudi/shared-configs.git"
},
"license": "MIT",
"author": {
"name": "krudi",
"email": "patryk.kudlik@gmail.com",
"url": "https://krudi.io"
},
"type": "module",
"exports": {
".": {
"types": "./dist/base.d.ts",
"import": "./dist/index.js"
},
"./base": {
"types": "./dist/base.d.ts",
"import": "./dist/base.js"
},
"./react": {
"types": "./dist/react.d.ts",
"import": "./dist/react.js"
},
"./nextjs": {
"types": "./dist/nextjs.d.ts",
"import": "./dist/nextjs.js"
},
"./expo": {
"types": "./dist/expo.d.ts",
"import": "./dist/expo.js"
},
"./prettier": {
"types": "./dist/prettier.d.ts",
"import": "./dist/prettier.js"
},
"./turbo": {
"types": "./dist/turbo.d.ts",
"import": "./dist/turbo.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -b tsconfig.build.json",
"dev": "tsc -p tsconfig.json --watch",
"lint:eslint": "eslint --flag unstable_native_nodejs_ts_config . --cache --cache-location .cache/.eslintcache",
"lint:eslint:fix": "eslint --flag unstable_native_nodejs_ts_config . --fix --cache --cache-location .cache/.eslintcache",
"lint:prettier": "prettier --check . --cache --cache-strategy metadata --cache-location .cache/.prettiercache",
"lint:prettier:fix": "prettier --write . --cache --cache-strategy metadata --cache-location .cache/.prettiercache",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"@eslint/compat": "^1.4.1",
"@eslint/eslintrc": "^3.3.4",
"@eslint/js": "^9.39.4",
"@next/eslint-plugin-next": "^15.5.12",
"@types/node": "^22.19.15",
"eslint": "^9.39.4",
"eslint-config-expo": "^9.2.0",
"eslint-config-flat-gitignore": "^2.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-flat-config-utils": "^2.1.4",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-turbo": "^2.8.14",
"globals": "^15.15.0",
"prettier": "^3.8.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.58.1"
},
"devDependencies": {
"jiti": "^2.6.1"
},
"engines": {
"node": ">= 24.14.0"
}
}