-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
37 lines (37 loc) · 1.18 KB
/
package.json
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
{
"name": "next-yak-root",
"private": true,
"version": "0.0.0",
"description": "Mono repository root for next-yak a performant css-in-js solution",
"workspaces": [
"packages/*"
],
"scripts": {
"changeset": "changeset",
"build": "pnpm run --filter=next-yak build",
"build:swc": "pnpm run --filter=yak-swc build",
"example": "pnpm --filter=next-yak-example run dev",
"package:types": "npx --package=@arethetypeswrong/cli attw --pack packages/next-yak",
"prettier": "pnpm run --recursive --if-present prettier",
"test": "pnpm run build && pnpm --filter=next-yak --filter=cross-file-tests --filter=next-yak-example run \"/test($|:types)/\"",
"test:watch": "pnpm --filter=next-yak run test:watch",
"test:snapshots": "pnpm --filter=next-yak --filter=cross-file-tests --filter=yak-swc run test:snapshots",
"watch": "pnpm run --filter=next-yak watch"
},
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"pnpm": {
"overrides": {
"yak-swc": "workspace:*"
}
},
"packageManager": "[email protected]",
"author": "Jan Nicklas",
"license": "MIT",
"devDependencies": {
"prettier": "^3.0.3",
"@changesets/cli": "^2.27.9"
}
}