forked from Ray-D-Song/web-archive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.46 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
69
70
71
72
73
74
75
76
{
"name": "web-archive",
"version": "0.1.0-alpha.1",
"packageManager": "[email protected]+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a",
"description": "Self-host your own web archive, powered by Cloudflare Workers and React.",
"author": "Ray-D-Song & banzhe",
"license": "ISC",
"keywords": [
"cloudflare",
"hono",
"react",
"save web page",
"self-host"
],
"workspaces": [
"packages/*"
],
"scripts": {
"init:local": "pnpm --filter=server init:local",
"dev:web": "pnpm --filter=web dev",
"dev:server": "pnpm --filter=server dev",
"dev:plugin": "pnpm --filter=plugin dev",
"build:service": "pnpm --filter=server build && pnpm --filter=web build && node scripts/build_clear.mjs",
"build:plugin": "pnpm --filter=plugin build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-collapsible": "^1.1.1",
"@radix-ui/react-context-menu": "^2.2.2",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-scroll-area": "^1.2.0",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.3",
"ahooks": "^3.8.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"lucide-react": "^0.446.0",
"mitt": "^3.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.13",
"react-hook-form": "^7.53.1",
"react-hot-toast": "^2.4.1",
"recharts": "^2.13.0",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@antfu/eslint-config": "^2.21.1",
"@eslint-react/eslint-plugin": "^1.5.19",
"@iconify-json/mdi": "^1.1.67",
"@types/node": "^20.14.9",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"eslint": "8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"husky": "^9.0.11",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.13",
"vite": "^5.3.1",
"vite-plugin-static-copy": "^1.0.6"
}
}