-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
55 lines (55 loc) · 1.29 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": "next-axiom",
"description": "Send WebVitals from your Next.js project to Axiom.",
"version": "1.9.1",
"author": "Axiom, Inc.",
"license": "MIT",
"contributors": [
"Arne Bahlo <[email protected]>",
"Islam Shehata <[email protected]>"
],
"engines": {
"node": ">=18"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"format": "prettier --write src/*.ts tests/*.ts",
"check-format": "prettier -c src/*.ts tests/*.ts",
"test": "vitest run tests --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/axiomhq/next-axiom.git"
},
"keywords": [
"web-vitals",
"axiom",
"observability",
"performance",
"nextjs"
],
"bugs": {
"url": "https://github.com/axiomhq/next-axiom/issues"
},
"homepage": "https://github.com/axiomhq/next-axiom#readme",
"peerDependencies": {
"next": ">=14.0",
"react": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^20.4.2",
"@types/react": "^18.2.15",
"@vitest/coverage-v8": "^2.1.5",
"prettier": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"vitest": "^2.1.5"
},
"dependencies": {
"whatwg-fetch": "^3.6.2",
"use-deep-compare": "^1.2.1"
}
}