This repository was archived by the owner on Mar 7, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.65 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
{
"name": "define-config-plugin-types",
"version": "1.0.0",
"description": "Provides several plugin types for eslint-define-config",
"private": true,
"scripts": {
"clean": "tsx scripts/clean.ts",
"generate:plugin-dts": "tsx scripts/generate-plugin-dts.ts",
"format": "prettier --cache --write .",
"lint:fix": "eslint --cache --cache-strategy content --report-unused-disable-directives --fix .",
"lint": "eslint --cache --cache-strategy content --report-unused-disable-directives .",
"ts-check": "tsc",
"preflight": "pnpm install && run-s generate:plugin-dts format lint:fix ts-check"
},
"type": "module",
"license": "MIT",
"devDependencies": {
"@eslint-types/prettier": "workspace:~",
"@eslint-types/typescript-eslint": "workspace:~",
"@eslint-types/unicorn": "workspace:~",
"@types/eslint": "~8.56.7",
"@types/json-schema": "~7.0.15",
"@types/node": "~20.12.4",
"@typescript-eslint/eslint-plugin": "~7.5.0",
"@typescript-eslint/parser": "~7.5.0",
"change-case": "~5.4.4",
"eslint": "~8.57.0",
"eslint-config-prettier": "~9.1.0",
"eslint-define-config": "2.1.0",
"eslint-gitignore": "~0.1.0",
"eslint-plugin-prettier": "~5.1.3",
"eslint-plugin-unicorn": "~52.0.0",
"json-schema": "~0.4.0",
"json-schema-to-typescript": "~13.1.2",
"npm-run-all2": "~6.1.2",
"package-json-type": "~1.0.3",
"prettier": "~3.2.5",
"prettier-plugin-organize-imports": "~3.2.4",
"rimraf": "~5.0.5",
"tsx": "~4.7.2",
"typescript": "~5.4.4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0",
"pnpm": ">=8.6.0"
}
}