-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
68 lines (68 loc) · 1.82 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
67
68
{
"name": "@freshheads/cookie-guard",
"version": "4.0.1",
"description": "Let user manage cookie usage",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"prepare": "npm run build",
"prettier": "prettier --write 'src/**/*.{ts,tsx}'"
},
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"exports": {
"./package.json": "./package.json",
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./dist/style.css": "./dist/style.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freshheads/cookie-guard.git"
},
"engines": {
"node": ">=14.0.0"
},
"author": "Freshheads",
"license": "MIT",
"bugs": {
"url": "https://github.com/freshheads/cookie-guard/issues"
},
"devDependencies": {
"@types/js-cookie": "^3.0.3",
"@types/node": "^18.16.2",
"@types/react": "^18.0.31",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^4.0.0",
"path": "^0.12.7",
"postcss-nesting": "^11.2.2",
"prettier": "^2.8.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"rollup-plugin-visualizer": "^5.9.0",
"typescript": "^5.0.4",
"vite": "^4.2.0",
"vite-plugin-dts": "^2.3.0"
},
"dependencies": {
"@headlessui/react": "^1.7.14",
"js-cookie": "^3.0.5"
},
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17"
},
"homepage": "https://github.com/freshheads/cookie-guard#readme",
"directories": {
"doc": "doc",
"lib": "dist"
}
}