-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
66 lines (66 loc) · 1.88 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": "@rivercode/facebook-conversion-api-nextjs",
"version": "4.3.2",
"description": "Facebook Conversion API for Next.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./handlers": "./dist/handlers/index.js",
"./components": "./dist/components/index.js"
},
"scripts": {
"watch": "tsc --watch",
"build": "tsc --build",
"lint": "eslint . --ext .js,.ts,.jsx,.tsx",
"lint:tsc": "tsc",
"link": "npx link",
"setup": "yarn install && yarn run link && yarn run watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RivercodeAB/facebook-conversion-api-nextjs.git"
},
"author": "Rivercode",
"license": "ISC",
"bugs": {
"url": "https://github.com/RivercodeAB/facebook-conversion-api-nextjs/issues"
},
"homepage": "https://github.com/RivercodeAB/facebook-conversion-api-nextjs#readme",
"dependencies": {
"formdata-node": "^4.4.1",
"universal-cookie": "^4.0.4",
"uuid": "^9.0.0"
},
"peerDependencies": {
"next": "^11 || ^12 || ^13",
"react": "^16 || ^17 || ^18 || ^19",
"react-dom": "^16 || ^17 || ^18 || ^19"
},
"devDependencies": {
"@types/node": "^18.16.1",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.1",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"next": "^13.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.0.4"
},
"keywords": [
"facebook-conversion-api",
"fb-conversion-api",
"next",
"nextjs",
"typescript"
]
}