-
-
Notifications
You must be signed in to change notification settings - Fork 136
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.52 KB
/
Copy pathpackage.json
File metadata and controls
124 lines (124 loc) · 3.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "root",
"private": true,
"scripts": {
"bench": "pnpm build && vitest bench --run --config .config/vitest.config.ts && pnpm run --filter bench report",
"bench:baselines": "pnpm run --filter bench baselines",
"bench:check": "pnpm run --filter bench check",
"bench:compare": "pnpm run --filter bench compare",
"bench:preview": "pnpm run --filter bench preview",
"build": "pnpm run --filter './packages/**' build",
"build:examples": "pnpm --filter './examples/**' --parallel build",
"bundlesize": "pnpm run --filter './packages/**' --parallel bundlesize",
"check": "pnpm run --filter './packages/**' --parallel check",
"dev": "vitest --config .config/vitest.config.ts",
"docs": "pnpm run --filter './docs' dev",
"preinstall": "npx only-allow pnpm",
"lint:skills": "skill-check check ./.agents/skills --no-security-scan --strict",
"lint-staged": "lint-staged --config .config/lint-staged.config.mjs",
"prepare": "pnpm run '/^prepare:.*/'",
"prepare:hooks": "git config core.hooksPath .github/hooks",
"prepare:packages": "pnpm build",
"prettier": "prettier --config .prettierrc.json --ignore-unknown --no-error-on-unmatched-pattern",
"syncpack:fix": "syncpack fix",
"syncpack:lint": "syncpack lint",
"test": "vitest --config .config/vitest.config.ts run --coverage"
},
"devDependencies": {
"@types/node": "24.13.2",
"@vitest/coverage-v8": "4.1.5",
"if-env": "1.0.4",
"lint-staged": "17.0.3",
"prettier": "3.8.3",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-packagejson": "3.0.2",
"prettier-plugin-tailwindcss": "0.8.0",
"skill-check": "1.2.0",
"syncpack": "15.0.0",
"tsdown": "0.22.4",
"typescript": "6.0.3",
"vitest": "4.1.5"
},
"packageManager": "pnpm@11.0.9",
"engines": {
"node": "24"
},
"syncpack": {
"customTypes": {
"nodeEngine": {
"path": "engines.node",
"strategy": "version"
},
"packageManager": {
"path": "packageManager",
"strategy": "name@version"
}
},
"versionGroups": [
{
"label": "Use `workspace:*` protocol for local packages",
"packages": [
"!example-*"
],
"dependencies": [
"cva",
"class-variance-authority"
],
"dependencyTypes": [
"!local"
],
"pinVersion": "workspace:*"
},
{
"label": "Use `latest` for `latest` examples",
"packages": [
"example-*"
],
"dependencies": [
"class-variance-authority"
],
"pinVersion": "latest"
},
{
"label": "Use `beta` for `beta` examples",
"packages": [
"example-beta-*"
],
"dependencies": [
"cva"
],
"pinVersion": "beta"
},
{
"label": "Examples allow Node >=22 — StackBlitz WebContainers run an older, fixed Node",
"packages": [
"example-*"
],
"dependencyTypes": [
"nodeEngine"
],
"pinVersion": ">=22"
},
{
"label": "Snap `engines.node` and `packageManager` to the root package",
"dependencyTypes": [
"nodeEngine",
"packageManager"
],
"snapTo": [
"root"
]
},
{
"label": "Ignore peer dependencies in `cva`",
"packages": [
"cva"
],
"dependencyTypes": [
"peer"
],
"isIgnored": true
}
]
}
}