-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
30 lines (30 loc) · 913 Bytes
/
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
{
"name": "root",
"private": true,
"packageManager": "pnpm@9.7.0",
"engines": {
"node": ">=18.19.0"
},
"scripts": {
"update:all": "pnpm recursive update --include-workspace-root",
"test": "node --test && pnpm --filter \"./tests/e2e/**\" test",
"test:e2e": "pnpm --filter \"./tests/e2e/**\" test",
"test:unit": "node --test",
"package:dev": "pnpm --filter astro-theme-provider dev",
"package:build": "pnpm --filter astro-theme-provider build",
"playground:dev": "pnpm --filter playground dev",
"playground:build": "pnpm --filter playground build",
"docs:dev": "pnpm --filter docs dev",
"docs:build": "pnpm --filter docs build",
"changeset": "changeset",
"lint": "biome check .",
"lint:fix": "biome check --apply ."
},
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.27.10",
"@playwright/test": "^1.49.0",
"astro": "^5.0.4"
}
}