forked from withastro/starlight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.22 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
{
"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"
},
"license": "MIT",
"devDependencies": {
"@astrojs/check": "^0.7.0",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.5",
"@size-limit/file": "^11.1.4",
"astro": "^4.15.3",
"prettier": "^3.3.2",
"prettier-plugin-astro": "^0.14.0",
"size-limit": "^11.1.4",
"typescript": "^5.4.5"
},
"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
}
]
}