- pnpm workspaces monorepo with apps/ and packages/ - Next.js 16 landing page (apps/web) with dark theme, feature overview - Package stubs: @webproxy/core, @webproxy/indexer, @webproxy/shared - Proxy server placeholder (apps/proxy) - Project spec, architecture docs, and deployment guide - Gitea remote configured at 185.191.239.154:3000 Co-Authored-By: UnicornDev <noreply@unicorndev.wtf>
22 lines
611 B
JSON
22 lines
611 B
JSON
{
|
|
"name": "webproxy",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"description": "Local internet indexing layer - crawl, cache, and serve web content to your network",
|
|
"scripts": {
|
|
"dev": "pnpm --filter @webproxy/web dev",
|
|
"build": "pnpm --filter @webproxy/web build",
|
|
"start": "pnpm --filter @webproxy/web start",
|
|
"lint": "pnpm -r lint",
|
|
"clean": "pnpm -r clean",
|
|
"typecheck": "pnpm -r typecheck"
|
|
},
|
|
"keywords": ["proxy", "web-indexer", "cache", "local-network"],
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=20",
|
|
"pnpm": ">=9"
|
|
},
|
|
"packageManager": "pnpm@10.24.0"
|
|
}
|