-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 936 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
35
36
37
38
39
40
{
"name": "remix-fathom",
"version": "0.0.9",
"description": "A hook to quickly add Fathom to your Remix app.",
"main": "build/index.js",
"homepage": "https://github.com/brandonpittman/remix-fathom",
"repository": {
"type": "git",
"url": "git+https://github.com/brandonpittman/remix-fathom.git"
},
"files": [
"build"
],
"scripts": {
"build": "tsc --esModuleInterop -d src/index.ts --outDir build"
},
"keywords": [
"Remix",
"Fathom",
"React",
"Hook"
],
"author": "Brandon Pittman",
"license": "MIT",
"peerDependencies": {
"@remix-run/react": "^1.3.5",
"fathom-client": "^3.4.1",
"react": "^18.0.0"
},
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.2.163",
"@types/node": "^17.0.23",
"@types/react": "^17.0.43",
"eslint": "^8.12.0",
"eslint-config-remix": "^0.0.2",
"tsc": "^2.0.4",
"typescript": "^4.6.3"
}
}