forked from mep-agency/next-iubenda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.26 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
{
"name": "@mep-agency/next-iubenda",
"version": "1.0.0-alpha1",
"private": false,
"description": "A React library for integrating Iubenda's Cookie Solution into Next.js projects",
"source": "src/index.tsx",
"main": "src/index.tsx",
"sideEffects": false,
"scripts": {
"lint": "eslint \"**/*.{ts,tsx,js}\" && prettier --check \"**/*.{ts,tsx,md,scss,css,js}\"",
"format": "prettier --write \"**/*.{ts,tsx,md,scss,css,js}\""
},
"files": [
"src",
"LICENCE",
"README.md"
],
"exports": {
".": "./src/index.tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mep-agency/next-iubenda.git"
},
"keywords": [
"next",
"next.js",
"react",
"redirect",
"link",
"router"
],
"author": "Marco Lipparini <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mep-agency/next-iubenda/issues"
},
"peerDependencies": {
"next": ">= 13.0.0",
"react": ">= 18.2.0"
},
"devDependencies": {
"@types/react": "^18.0.21",
"eslint": "8.43.0",
"eslint-config-next": "^13.4.7",
"eslint-config-prettier": "^8.8.0",
"next": "^13.4.7",
"prettier": "^2.8.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "^5.1.3"
}
}