-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json.bak
More file actions
99 lines (99 loc) · 2.52 KB
/
package.json.bak
File metadata and controls
99 lines (99 loc) · 2.52 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
97
98
99
{
"name": "pnpm-catalog-updates",
"private": true,
"description": "A CLI tool to check and update pnpm workspace catalog dependencies",
"keywords": [
"pnpm",
"catalog",
"dependencies",
"update",
"workspace",
"cli",
"package-manager"
],
"author": {
"name": "Evan Hu",
"email": "evan@yldm.tech"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yldm-tech/pnpm-catalog-updates.git"
},
"bugs": {
"url": "https://github.com/yldm-tech/pnpm-catalog-updates/issues"
},
"homepage": "https://pcu-cli.dev",
"engines": {
"node": ">=22.13.0",
"pnpm": ">=10 <12"
},
"packageManager": "pnpm@11.0.4",
"type": "module",
"scripts": {
"build": "turbo build",
"build:watch": "turbo build:watch",
"dev": "turbo dev --filter=@pcu/cli",
"start": "pnpm --filter=@pcu/cli start",
"test": "turbo test",
"test:watch": "turbo test:watch",
"test:coverage": "turbo test:coverage",
"check": "biome check .",
"check:fix": "biome check --write .",
"typecheck": "turbo typecheck",
"clean": "turbo clean",
"prepare": "husky install",
"prepack": "pnpm build",
"changeset": "changeset",
"version": "changeset version",
"release": "node scripts/publish-dual.cjs",
"bump": "node scripts/release-prepare.cjs",
"tag": "node scripts/release-tag.cjs"
},
"dependencies": {
"pcu": "workspace:*"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@changesets/cli": "catalog:",
"@types/fs-extra": "catalog:",
"@types/inquirer": "catalog:",
"@types/lodash": "catalog:",
"@types/node": "catalog:",
"@types/semver": "catalog:",
"@vitest/coverage-v8": "catalog:",
"@vitest/ui": "catalog:",
"husky": "catalog:",
"lint-staged": "catalog:",
"msw": "catalog:",
"prettier": "catalog:",
"prettier-plugin-organize-imports": "catalog:",
"prettier-plugin-tailwindcss": "catalog:",
"rimraf": "catalog:",
"tsx": "catalog:",
"turbo": "catalog:",
"typescript": "catalog:",
"vite": "8.0.0",
"vitest": "catalog:"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md,css}": [
"biome check --write --no-errors-on-unmatched"
]
},
"pnpm": {
"overrides": {
"@isaacs/brace-expansion": "5.0.1",
"js-yaml": "3.14.2",
"mdast-util-to-hast": "13.2.1",
"minimatch": "10.2.4",
"rollup": "4.59.0",
"sucrase": "3.35.1",
"tar": "7.5.11"
}
},
"volta": {
"node": ">=22.13.0",
"pnpm": ">=10"
}
}