-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 915 Bytes
/
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
{
"name": "next-fathom",
"version": "0.1.0",
"description": "Add Fathom tracking to Next.js projects that use the App Router.",
"repository": "git@github.com:joshuabaker/next-fathom.git",
"author": "Joshua Baker <160484+joshuabaker@users.noreply.github.com>",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"format": "prettier --write .",
"lint": "prettier --check . && eslint . --ext .ts,.tsx",
"build": "yarn lint && tsc",
"prepublishOnly": "yarn build"
},
"dependencies": {
"fathom-client": "^3.5.0"
},
"peerDependencies": {
"next": "^13",
"react": "^18"
},
"devDependencies": {
"@types/next": "^9.0.0",
"@types/react": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.41.0",
"prettier": "^2.8.8",
"typescript": "^5.0.4"
}
}