-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.18 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.18 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
{
"name": "@standard-config/oxlint-packages",
"version": "0.0.0",
"private": true,
"license": "MIT",
"author": {
"name": "Dom Porada",
"email": "dom@dom.engineering",
"url": "https://dom.engineering"
},
"type": "module",
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@10.33.0",
"devDependencies": {
"@standard-config/eslint": "^2.0.2",
"@standard-config/oxlint": "workspace:*",
"@standard-config/prettier": "^1.11.3",
"@standard-config/tsconfig": "catalog:",
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^10.1.0",
"oxlint": "catalog:",
"oxlint-tsgolint": "catalog:",
"prettier": "^3.8.1",
"publint": "catalog:",
"typescript": "catalog:",
"vite-plus": "catalog:",
"vitest": "catalog:"
},
"scripts": {
"build": "pnpm --recursive build --log-level=warn --no-publint",
"fix": " pnpm format && pnpm build && pnpm lint && pnpm format",
"format": "prettier --ignore-unknown --log-level=warn --write .",
"format:check": "prettier --check --ignore-unknown .",
"lint": "oxlint --fix",
"lint:check": "oxlint --deny-warnings --type-check",
"prepare": "vp config",
"postprepare": "pnpm build",
"test": "vitest run",
"typecheck": "tsc --noEmit"
}
}