-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.68 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.68 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
{
"name": "@logtail/next",
"description": "Better Stack Telemetry Next.js client",
"version": "0.3.1",
"author": "Better Stack <hello@betterstack.com>",
"license": "MIT",
"engines": {
"node": ">=18"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
},
"./hooks": {
"types": "./dist/hooks.d.ts",
"import": "./dist/hooks.js",
"require": "./dist/hooks.js"
},
"./webVitals": {
"types": "./dist/webVitals/index.d.ts",
"import": "./dist/webVitals/index.js",
"require": "./dist/webVitals/index.js"
}
},
"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/logtail/logtail-nextjs.git"
},
"keywords": [
"web-vitals",
"better-stack",
"logtail",
"observability",
"performance",
"telemetry",
"nextjs"
],
"bugs": {
"url": "https://github.com/logtail/logtail-nextjs/issues"
},
"homepage": "https://github.com/logtail/logtail-nextjs#readme",
"peerDependencies": {
"next": ">=15.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"
}
}