-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.18 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
{
"name": "@panelbear/panelbear-nextjs",
"version": "2.0.1",
"description": "Official Panelbear integration for Next.js",
"repository": {
"type": "git",
"url": "git+https://github.com/panelbearhq/panelbear-nextjs.git"
},
"keywords": [
"panelbear",
"analytics",
"next",
"nextjs",
"monitoring",
"metrics"
],
"author": "Anthony N. Simon <[email protected]>",
"license": "Apache-2.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc --declaration",
"fmt": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json"
},
"peerDependencies": {
"next": "^13",
"react": "^18"
},
"dependencies": {
"@panelbear/panelbear-js": "^1.3.3",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.0.27",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"next": "^13.1.4",
"prettier": "^2.2.1",
"react": "^18.2.0",
"typescript": "^4.9.4"
},
"bugs": {
"url": "https://github.com/panelbearhq/panelbear-nextjs/issues"
},
"homepage": "https://github.com/panelbearhq/panelbear-nextjs#readme"
}