-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.74 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
{
"name": "react-cookify",
"version": "2.1.8",
"description": "Simple, customizable open source cookie consent banner for GDPR law",
"scripts": {
"lint": "eslint src/**/*.{js,jsx,ts,tsx,json}",
"build": "rollup -c --bundleConfigAsCjs",
"build:watch": "rollup -c --bundleConfigAsCjs -w",
"format": "prettier --ignore-path .gitignore --write src/**/*.{js,jsx,ts,tsx,json}"
},
"repository": {
"type": "git",
"url": "https://github.com/jersyfi/react-cookify.git"
},
"keywords": [
"Cookify",
"GDPR",
"Cookie Consent",
"Cookie",
"Banner",
"Javascript",
"Bootstrap"
],
"author": "Jérôme Bastian Winkel",
"license": "MIT",
"bugs": {
"url": "https://github.com/jersyfi/react-cookify/issues"
},
"homepage": "https://github.com/jersyfi/react-cookify#readme",
"peerDependencies": {
"@types/js-cookie": "^3.0.2",
"js-cookie": "^3.0.1",
"react": "^18.2.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^29.2.5",
"@types/react": "^18.0.26",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-react": "^7.31.11",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"rollup": "^3.9.1",
"rollup-plugin-dts": "^5.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4"
},
"module": "dist/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts"
}