-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.19 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
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
85
{
"name": "@figliolia/react-metrics",
"version": "1.0.6",
"description": "React bindings for @figliolia/metrics",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
}
},
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"src/*"
],
"scripts": {
"build": "ts-packager -e src",
"lint": "tsx ci/commands/Lint.ts",
"test": "tsx ci/commands/Test.ts"
},
"homepage": "https://github.com/alexfigliolia/react-metrics#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/alexfigliolia/react-metrics.git"
},
"keywords": [
"performance",
"metrics",
"monitoring",
"CLS",
"interactions",
"reliability",
"critical assets",
"frontend",
"developer tooling",
"Logging",
"Page Load",
"Reporting",
"React",
"@figliolia/metrics"
],
"author": "Alex Figliolia",
"license": "MIT",
"dependencies": {
"@figliolia/metrics": "^1.1.1",
"react": "^18.3.1"
},
"peerDependencies": {
"@figliolia/metrics": "^1.1.1",
"react": "^18.3.1"
},
"devDependencies": {
"@figliolia/child-process": "^1.0.1",
"@figliolia/ts-packager": "^1.0.9",
"@types/node": "^20.11.19",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"copyfiles": "^2.4.1",
"eslint": "^8.39.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "2",
"prettier": "^3.2.4",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.7.1",
"typescript": "^5.4.5"
},
"publishConfig": {
"access": "public"
}
}