-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.48 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
{
"name": "lighthouse-reporting",
"version": "0.0.0-development",
"type": "module",
"scripts": {
"build": "vite build && vite build -c vite.umd.config.ts && tsc -p ./tsconfig.build.json",
"compile": "tsc",
"lint": "eslint --ext .ts --ignore-path .gitignore .",
"precommit": "run-p lint compile",
"semantic-release": "semantic-release"
},
"files": [
"dist/"
],
"main": "./dist/lighthouse-reporting.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/lighthouse-reporting.umd.cjs",
"default": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"optionalDependencies": {
"@playwright/test": "^1",
"get-port": ">=7"
},
"devDependencies": {
"@playwright/test": "^1.34.3",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.14.11",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"get-port": "^7.0.0",
"husky": "^9.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"semantic-release": "^24.0.0",
"typescript": "^5.5.4",
"vite": "^5.3.4",
"vite-plugin-static-copy": "^1.0.6"
},
"dependencies": {
"fs-extra": "^11.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/mgrybyk/lighthouse-reporting.git"
}
}