-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 915 Bytes
/
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
{
"name": "astro-lighthouse",
"description": "Lighthouse Pagespeed insights within the Astro dev toolbar",
"author": "buk0vec",
"type": "module",
"version": "0.1.2",
"license": "MIT",
"repository": "https://github.com/buk0vec/astro-lighthouse",
"homepage": "https://github.com/buk0vec/astro-lighthouse",
"exports": {
".": "./src/index.mjs",
"./package.json": "./package.json"
},
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"lighthouse": "^11.3.0"
},
"devDependencies": {
"@astrojs/check": "^0.3.1",
"astro": "^4.0.1",
"typescript": "^5.3.2"
},
"keywords": [
"astro-integration",
"withastro",
"optimization"
],
"files": [
"src/index.mjs",
"src/lighthouse.js",
"src/lighthouse-toolbar.js"
]
}