-
-
Notifications
You must be signed in to change notification settings - Fork 535
/
package.json
55 lines (55 loc) · 1.42 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "starlight-root",
"private": true,
"version": "1.0.0",
"description": "",
"scripts": {
"build:examples": "pnpm --no-bail --workspace-concurrency 1 --filter '@example/*' build",
"size": "size-limit",
"version": "pnpm changeset version && pnpm i --no-frozen-lockfile",
"format": "prettier -w --cache --plugin prettier-plugin-astro .",
"typecheck": "astro check --minimumSeverity warning --noSync && pnpm --filter starlight-docs typecheck"
},
"license": "MIT",
"devDependencies": {
"@astrojs/check": "^0.7.0",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@size-limit/file": "^11.1.6",
"astro": "^4.16.10",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"size-limit": "^11.1.6",
"typescript": "^5.6.3"
},
"packageManager": "[email protected]",
"size-limit": [
{
"name": "/index.html",
"path": "examples/basics/dist/index.html",
"limit": "10 kB",
"gzip": true
},
{
"name": "/_astro/*.js",
"path": "examples/basics/dist/_astro/*.js",
"limit": "23 kB",
"gzip": true
},
{
"name": "/_astro/*.css",
"path": "examples/basics/dist/_astro/*.css",
"limit": "14.5 kB",
"gzip": true
}
],
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"playwright",
"search-insights"
]
}
}
}