-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
56 lines (56 loc) · 1.45 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
56
{
"name": "vue3-lighthouse-viewer",
"description": "A Vue 3 component for viewing Lighthouse reports",
"private": false,
"version": "0.1.29",
"type": "module",
"main": "./dist/vue-lighthouse-viewer.umd.js",
"module": "./dist/vue-lighthouse-viewer.es.js",
"types": "./types/types.d.ts",
"files": [
"/dist"
],
"exports": {
".": {
"import": "./dist/vue-lighthouse-viewer.es.js",
"require": "./dist/vue-lighthouse-viewer.umd.js"
}
},
"license": "Apache-2.0",
"author": {
"name": "Danilo Velasquez",
"email": "[email protected]",
"url": "https://d13z.dev"
},
"bugs": {
"url": "https://github.com/dvelasquez/lighthouse-viewer/issues"
},
"homepage": "https://dvelasquez.github.io/lighthouse-viewer/packages/vue3-lighthouse-viewer/demo/index.html",
"repository": "https://github.com/dvelasquez/lighthouse-viewer",
"keywords": [
"lighthouse",
"devtools",
"vue",
"performance",
"webperf"
],
"scripts": {
"dev": "vite",
"build:demo": "vite build",
"build:lib": "cross-env BUILD_TYPE=library vite build",
"build": "pnpm build:demo && pnpm build:lib",
"preview": "vite preview"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "5.2.1",
"@vue/tsconfig": "0.7.0",
"lighthouse-viewer": "workspace:^0.2.28",
"typescript": "5.7.3",
"vite": "6.0.11",
"vue": "3.5.13",
"vue-tsc": "2.2.0"
}
}