-
Notifications
You must be signed in to change notification settings - Fork 229
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.38 KB
/
package.json
File metadata and controls
52 lines (52 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
46
47
48
49
50
51
52
{
"name": "react-doctor",
"private": true,
"homepage": "https://github.com/millionco/react-doctor#readme",
"bugs": {
"url": "https://github.com/millionco/react-doctor/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/millionco/react-doctor.git"
},
"type": "module",
"scripts": {
"dev": "turbo run dev --filter=react-doctor",
"build": "turbo run build --filter=react-doctor",
"test": "turbo run test --filter=react-doctor",
"typecheck": "turbo run typecheck",
"lint": "vp lint",
"lint:fix": "vp lint --fix",
"format": "vp fmt",
"format:check": "vp fmt --check",
"check": "vp check",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && changeset publish",
"leaderboard:update": "node --experimental-strip-types --no-warnings scripts/update-leaderboard.ts"
},
"devDependencies": {
"@changesets/cli": "^2.31.0",
"@types/node": "^25.6.0",
"@voidzero-dev/vite-plus-core": "^0.1.15",
"turbo": "^2.9.7",
"typescript": "^6.0.3",
"vite-plus": "^0.1.15"
},
"engines": {
"node": ">=22",
"pnpm": ">=8"
},
"packageManager": "pnpm@10.29.1",
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"esbuild",
"unrs-resolver"
],
"overrides": {
"oxlint": "^1.63.0",
"oxlint-tsgolint": "^0.22.1"
}
}
}