-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.52 KB
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
{
"name": "cookie-checkup",
"version": "0.1.2",
"private": true,
"description": "Check, visualize, and understand how browsers handle your cookies.",
"keywords": [
"cookie",
"set-cookie",
"http",
"browser",
"developer-tools",
"samesite",
"httponly",
"secure-cookie",
"cookie-debugger",
"cookie-simulator"
],
"license": "MIT",
"author": {
"name": "Randy-R-code",
"url": "https://github.com/Randy-R-code"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Randy-R-code/cookie-checkup.git"
},
"homepage": "https://cookie-checkup.vercel.app",
"bugs": {
"url": "https://github.com/Randy-R-code/cookie-checkup/issues"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"typecheck": "next typegen && tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"lucide-react": "^1.41.0",
"next": "16.3.4",
"react": "19.2.8",
"react-dom": "19.2.8",
"tldts": "^7.4.11"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "^5.0.0",
"eslint": "^9",
"eslint-config-next": "16.3.4",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^5.0.0"
},
"packageManager": "pnpm@10.33.0"
}