-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
66 lines (66 loc) · 1.68 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
{
"name": "@honeybadger-io/nextjs",
"version": "5.9.10",
"description": "Next.js integration for Honeybadger",
"keywords": [
"nextjs",
"honeybadger",
"vercel",
"react"
],
"author": {
"name": "Pangratios Cosma",
"email": "[email protected]"
},
"homepage": "https://github.com/honeybadger-io/honeybadger-js/tree/master/packages/nextjs",
"license": "MIT",
"main": "dist/honeybadger-nextjs.cjs.js",
"module": "dist/honeybadger-nextjs.esm.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src",
"templates",
"scripts"
],
"bin": {
"honeybadger-copy-config-files": "scripts/copy-config-files-bin.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/honeybadger-io/honeybadger-js.git"
},
"scripts": {
"build": "tsc --build tsconfig.json && rollup -c && rollup -c rollup.scripts.config.js && tsc --build tsconfig.types.json",
"test": "./node_modules/jest/bin/jest.js --config jest.config.js"
},
"bugs": {
"url": "https://github.com/honeybadger-io/honeybadger-js/issues"
},
"peerDependencies": {
"@honeybadger-io/react": ">= 6.1.25",
"next": ">= 13.x"
},
"dependencies": {
"@honeybadger-io/js": "^6.10.1",
"@honeybadger-io/webpack": "^6.3.1"
},
"devDependencies": {
"@honeybadger-io/react": "^6.1.25",
"@rollup/plugin-commonjs": "^22.0.0",
"@types/jest": "^29.5.3",
"jest": "^29.6.1",
"mock-fs": "^5.2.0",
"next": "^13.2.3",
"rollup": "^2.70.2",
"rollup-plugin-copy": "^3.4.0",
"ts-jest": "^29.1.1",
"typescript": "^4.6.3"
},
"engines": {
"node": ">=14"
},
"publishConfig": {
"access": "public"
}
}