-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 903 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 903 Bytes
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
{
"name": "root",
"private": true,
"packageManager": "pnpm@10.17.1",
"license": "MIT",
"author": {
"name": "Louis Escher",
"url": "https://lou.gg"
},
"type": "module",
"scripts": {
"build": "pnpm --filter astro-webrings build && pnpm --filter web build",
"dev": "pnpm --stream -r -parallel dev",
"start": "pnpm --filter web start",
"changeset": "changeset",
"ci:prepublish": "pnpm build",
"ci:install": "pnpm install --frozen-lockfile",
"ci:version": "pnpm changeset version",
"ci:publish": "pnpm changeset publish",
"lint": "biome lint",
"lint:fix": "biome lint --write",
"format": "biome format",
"format:fix": "biome format --write"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.1",
"@changesets/cli": "2.29.7",
"@changesets/config": "3.1.1",
"@changesets/write": "0.4.0",
"@biomejs/biome": "^2.2.4"
}
}