-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.23 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.23 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@qlub-foss/argus",
"version": "1.5.0",
"description": "Web performance metric collector",
"author": "Qlub",
"license": "MIT",
"keywords": [
"web-vitals",
"performance",
"metrics",
"rum",
"browser",
"cls",
"lcp",
"inp"
],
"homepage": "https://github.com/qlub-dev/argus#readme",
"bugs": {
"url": "https://github.com/qlub-dev/argus/issues"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"package.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/qlub-dev/argus.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"prepare": "lefthook install",
"build": "rimraf dist && tsc && rollup -c",
"test": "jest",
"bump-version": "pnpm build && pnpm dlx semantic-release",
"format": "prettier --write --cache \"**/*.{js,jsx,ts,tsx,md}\"",
"lint": "eslint . --ext ts,tsx,mdx --fix --cache --report-unused-disable-directives"
},
"dependencies": {
"web-vitals": "^5.1.0"
},
"devDependencies": {
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.34.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"eslint": "^9.34.0",
"eslint-plugin-unused-imports": "^4.2.0",
"globals": "^16.3.0",
"jest": "^30.1.1",
"jest-environment-jsdom": "^30.1.2",
"lefthook": "1.11.6",
"prettier": "3.6.2",
"rimraf": "^6.0.1",
"rollup": "^4.49.0",
"semantic-release": "^24.2.7",
"ts-jest": "^29.4.1",
"tslib": "^2.8.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.41.0"
},
"packageManager": "pnpm@10.15.0"
}