-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.38 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
{
"name": "@braviadev/config",
"version": "0.0.0",
"license": "MIT",
"author": "Olanrewaju Toyyib <me@bravía.com> (https://github.com/braviadev/)",
"type": "module",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"test": "turbo test",
"check": "pnpm lint && pnpm typecheck && pnpm format:check && pnpm knip && pnpm lint:spell && pnpm sync:check",
"clean": "turbo clean && rm -rf .turbo",
"format": "prettier --write .",
"format:check": "prettier --check .",
"knip": "knip",
"lint:fix": "eslint --fix --max-warnings 0",
"lint:spell": "cspell .",
"prepare": "lefthook install",
"release": "changeset publish",
"sync": "tsx scripts/sync-oxlint-eslint.ts",
"sync:check": "tsx scripts/sync-oxlint-eslint.ts --check",
"version": "changeset version"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@braviadev/eslint-config": "workspace:*",
"@braviadev/prettier-config": "workspace:*",
"@braviadev/typescript-config": "workspace:*",
"@types/node": "catalog:dev",
"cspell": "^9.7.0",
"eslint": "catalog:dev",
"knip": "^6.1.0",
"lefthook": "^2.1.4",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"turbo": "^2.8.21",
"typescript": "^6.0.2"
},
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=24"
}
}