-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.77 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
57
58
59
{
"name": "@h1ghbre4k3r/lighthouse.js",
"version": "0.2.0",
"description": "JavaScript wrapper around the CAU Lighthouse API",
"main": "build/index.js",
"scripts": {
"dev": "tsc -w",
"build": "tsc",
"start": "node .",
"build:start": "npm run build && npm run start",
"lint": "eslint --ext .ts src",
"bundle": "rimraf build && webpack"
},
"repository": {
"type": "git",
"url": "https://github.com/H1ghBre4k3r/lighthouse.js"
},
"keywords": [
"typescript",
"javascript",
"lighthouse",
"api"
],
"author": {
"email": "[email protected]",
"name": "H1ghBre4k3r",
"url": "https://twitter.com/h1ghbre4k3r"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/H1ghBre4k3r/lighthouse.js/issues"
},
"homepage": "https://github.com/H1ghBre4k3r/lighthouse.js#readme",
"devDependencies": {
"@types/node": "^22.0.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"dts-bundle-webpack": "^1.0.2",
"eslint": "^9.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.1.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^5.0.0",
"rimraf": "^6.0.1",
"ts-loader": "^9.2.6",
"typescript": "^5.0.2",
"webpack": "^5.65.0",
"webpack-cli": "^6.0.1",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@msgpack/msgpack": "^2.7.1",
"@types/ws": "^8.2.2",
"uuid": "^11.0.2",
"ws": "^8.4.0"
}
}