forked from zhihui-hu/one-ip
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.4 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "ip",
"private": true,
"license": "AGPL-3.0-only",
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=24"
},
"version": "26.911.2124",
"type": "module",
"scripts": {
"dev": "vite",
"deploy": "wrangler deploy",
"build": "tsc -b && vite build",
"worker:dev": "node scripts/worker-dev.mjs",
"worker:types": "wrangler types",
"test": "wrangler deploy --dry-run --env='' --outdir .worker-test && node --import ./tests/register-paths.mjs --test tests/*.test.mjs",
"lint": "oxlint",
"preview": "vite preview",
"format": "prettier --write .",
"prepare": "husky",
"browser:build": "node scripts/build-browser-diagnostics.mjs"
},
"dependencies": {
"@fingerprintjs/fingerprintjs": "5.2.0",
"@fontsource-variable/geist": "^5.3.0",
"@hookform/resolvers": "latest",
"@tanstack/react-query": "latest",
"@tanstack/react-table": "^8.21.3",
"class-variance-authority": "^0.7.1",
"cn": "^0.2.6",
"date-fns": "latest",
"fingerprintjs2": "2.1.4",
"gsap": "latest",
"jotai": "latest",
"leaflet": "^1.9.4",
"lucide-react": "latest",
"nprogress": "latest",
"qrcode.react": "^4.2.0",
"radix-ui": "latest",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-hook-form": "latest",
"react-liquid-glass-svg": "^1.0.5",
"react-router-dom": "latest",
"shadcn": "^4.21.0",
"shiki": "^4.4.3",
"sonner": "latest",
"tw-animate-css": "^1.4.0",
"vaul": "^1.1.2",
"zod": "latest"
},
"devDependencies": {
"@tailwindcss/vite": "latest",
"@trivago/prettier-plugin-sort-imports": "latest",
"@types/leaflet": "^1.9.22",
"@types/node": "^24.13.3",
"@types/nprogress": "latest",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@vitejs/plugin-react": "^6.1.0",
"eslint-config-prettier": "latest",
"husky": "latest",
"lint-staged": "latest",
"oxlint": "^1.79.0",
"prettier": "latest",
"prettier-plugin-tailwindcss": "latest",
"rollup": "4.63.1",
"tailwindcss": "latest",
"typescript": "~6.0.2",
"vite": "^8.2.2",
"wrangler": "^4.130.0"
},
"description": "IP diagnostics SPA with Cloudflare Workers",
"keywords": [
"react",
"vite",
"spa",
"shadcn-ui",
"tanstack-query",
"tanstack-table"
],
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,css,md}": [
"prettier --write"
]
}
}