-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.23 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.23 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
{
"name": "@standard-config/eslint",
"version": "2.0.2",
"description": "TypeScript-first ESLint config designed to complement Oxlint",
"license": "MIT",
"author": {
"name": "Dom Porada",
"email": "dom@dom.engineering",
"url": "https://dom.engineering"
},
"repository": {
"type": "git",
"url": "git+https://github.com/standard-config/eslint.git"
},
"keywords": [
"eslint",
"eslint-config",
"flat-config",
"oxc",
"oxlint",
"react",
"standard-config",
"type-aware",
"typescript"
],
"files": [
"dist/**"
],
"type": "module",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./utilities": {
"types": "./dist/utilities.d.mts",
"import": "./dist/utilities.mjs"
}
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@10.33.0",
"dependencies": {
"@stylistic/eslint-plugin": "^5.10.0",
"eslint-plugin-perfectionist": "^5.7.0",
"eslint-plugin-react-x": "^3.0.0"
},
"peerDependencies": {
"@standard-config/oxlint": ">=1.3.0",
"eslint": ">=10.0.0",
"typescript-eslint": ">=8.56.0"
},
"peerDependenciesMeta": {
"@standard-config/oxlint": {
"optional": true
},
"eslint": {
"optional": true
},
"typescript-eslint": {
"optional": true
}
},
"devDependencies": {
"@eslint/compat": "^2.0.3",
"@standard-config/oxlint": "^1.6.2",
"@standard-config/prettier": "^1.11.3",
"@standard-config/tsconfig": "^3.1.0",
"@types/node": "^22.19.15",
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^10.1.0",
"jiti": "^2.6.1",
"oxlint": "catalog:",
"prettier": "^3.8.1",
"publint": "^0.3.18",
"react": "^19.2.4",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0",
"vite-plus": "^0.1.14",
"vitest": "^4.1.2"
},
"scripts": {
"build": "vp pack",
"fix": "pnpm format && pnpm lint && pnpm format",
"format": "prettier --ignore-unknown --log-level=warn --write .",
"format:check": "prettier --check --ignore-unknown .",
"lint": "vp lint --fix && eslint --fix .",
"lint:check": "vp lint --deny-warnings --type-check && eslint .",
"prepack": "pnpm run '/^(format:check|lint:check|test|typecheck)$/' && pnpm build",
"prepare": "vp config",
"test": "vitest run",
"typecheck": "tsc --noEmit"
}
}