-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.23 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
{
"name": "@kripod/eslint-config",
"version": "0.6.5",
"description": "Pragmatic ESLint config for robust collaboration",
"keywords": [
"eslint",
"eslintconfig"
],
"homepage": "https://github.com/kripod/eslint-config#readme",
"bugs": "https://github.com/kripod/eslint-config/issues",
"repository": "kripod/eslint-config",
"license": "MIT",
"author": "Kristóf Poduszló (https://www.kripod.dev/)",
"type": "module",
"exports": {
"./base": {
"import": {
"types": "./dist/esm/base.d.ts",
"default": "./dist/esm/base.js"
},
"require": {
"types": "./dist/commonjs/base.d.ts",
"default": "./dist/commonjs/base.js"
}
},
"./type-checked": {
"import": {
"types": "./dist/esm/type-checked.d.ts",
"default": "./dist/esm/type-checked.js"
},
"require": {
"types": "./dist/commonjs/type-checked.d.ts",
"default": "./dist/commonjs/type-checked.js"
}
},
"./package.json": "./package.json"
},
"files": [
"dist/"
],
"scripts": {
"prepare": "tshy",
"clean": "git clean --interactive -dx --exclude node_modules/",
"build:inspector": "eslint-config-inspector build",
"lint": "pnpm run \"/^lint:(?!fix)/\"",
"lint:js+ts": "eslint",
"lint:format": "prettier --check .",
"lint:types": "tsc",
"lint:fix": "pnpm run \"/^lint:fix:/\"",
"lint:fix:js+ts": "eslint --fix",
"lint:fix:format": "prettier --write ."
},
"dependencies": {
"@typescript-eslint/utils": "^8.19.1",
"confusing-browser-globals": "^1.0.11",
"typescript-eslint": "^8.19.1"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.11",
"@eslint/config-inspector": "0.7.1",
"@ianvs/prettier-plugin-sort-imports": "4.4.0",
"@total-typescript/tsconfig": "1.0.4",
"@types/confusing-browser-globals": "1.0.3",
"eslint": "9.18.0",
"globals": "15.14.0",
"prettier": "3.4.2",
"tshy": "3.0.2",
"typescript": "5.7.3"
},
"peerDependencies": {
"eslint": ">=9.17"
},
"packageManager": "pnpm@10.0.0",
"tshy": {
"project": "./tsconfig.build.json",
"exports": [
"./src/base.ts",
"./src/type-checked.ts"
]
}
}