-
-
Notifications
You must be signed in to change notification settings - Fork 951
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.52 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.52 KB
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",
"lint": "eslint . --max-warnings 0",
"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.9.8",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.31.0",
"@eslint/js": "^10.0.1",
"@size-limit/file": "^12.1.0",
"astro": "^6.1.9",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.5.0",
"prettier": "3.3.3",
"prettier-plugin-astro": "^0.14.1",
"size-limit": "^12.1.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0"
},
"packageManager": "pnpm@10.33.2",
"size-limit": [
{
"name": "/index.html",
"path": "examples/basics/dist/index.html",
"limit": "8 kB",
"gzip": true
},
{
"name": "/_astro/*.js",
"path": "examples/basics/dist/_astro/*.js",
"limit": "27 kB",
"gzip": true
},
{
"name": "/_astro/*.css",
"path": [
"examples/basics/dist/_astro/*.css",
"!examples/basics/dist/_astro/print.*.css"
],
"limit": "16.75 kB",
"gzip": true
}
]
}