-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.64 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
{
"name": "@mugnai/rscs",
"version": "0.5.9",
"description": "RSCS - Really Simple Cookie Solution: A lightweight, customizable cookie consent management solution.",
"author": "Francesco Mugnai",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/francescomugnai/rscs.git"
},
"homepage": "https://github.com/francescomugnai/rscs#readme",
"bugs": {
"url": "https://github.com/francescomugnai/rscs/issues"
},
"keywords": [
"cookie",
"consent",
"gdpr",
"privacy",
"banner"
],
"type": "module",
"main": "./dist/cookie-banner-widget.umd.js",
"module": "./dist/cookie-banner-widget.es.js",
"exports": {
".": {
"import": "./dist/cookie-banner-widget.es.js",
"require": "./dist/cookie-banner-widget.umd.js"
},
"./style.css": "./dist/cookie-banner-style.css"
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build && terser dist/cookie-banner-widget.umd.js -o dist/cookie-banner-widget.umd.min.js",
"publish-package": "npm run build && npm publish",
"preview": "vite preview",
"test": "vitest"
},
"dependencies": {
"@formkit/auto-animate": "^0.8.2",
"js-cookie": "^3.0.5",
"preact": "^10.0.0"
},
"devDependencies": {
"@preact/preset-vite": "^2.8.3",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/preact": "^3.2.4",
"@testing-library/user-event": "^14.5.2",
"@vitejs/plugin-react": "^4.3.1",
"terser": "^5.31.1",
"vite": "^5.3.3",
"vite-plugin-css-injected-by-js": "^3.5.1",
"vitest": "^1.6.0"
},
"peerDependencies": {
"preact": "^10.0.0"
}
}