forked from withastro/starlight
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.23 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
{
"name": "starlight-docs",
"private": true,
"type": "module",
"version": "0.0.1",
"scripts": {
"test": "start-server-and-test preview http://localhost:3000 pa11y",
"pa11y": "pa11y-ci --sitemap 'http://localhost:3000/sitemap-index.xml' --sitemap-find 'https://starlight.astro.build' --sitemap-replace 'http://localhost:3000'",
"size": "size-limit",
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@astrojs/starlight": "workspace:*",
"astro": "^2.7.3",
"sharp": "^0.32.1"
},
"devDependencies": {
"@size-limit/file": "^8.2.4",
"hast-util-from-html": "^1.0.2",
"hast-util-to-string": "^2.0.0",
"hastscript": "^7.2.0",
"pa11y-ci": "^3.0.1",
"rehype": "^12.0.1",
"size-limit": "^8.2.4",
"start-server-and-test": "^2.0.0",
"unist-util-visit": "^4.1.2"
},
"size-limit": [
{
"name": "/index.html",
"path": "dist/index.html",
"limit": "14 kB"
},
{
"name": "/_astro/*.js",
"path": "dist/_astro/*.js",
"limit": "20 kB"
},
{
"name": "/_astro/*.css",
"path": "dist/_astro/*.css",
"limit": "10 kB"
}
]
}