* Relicense from AGPL-3.0 to GPL-3.0 (keep dual-license with commercial option) AGPL's network-use clause is irrelevant for a desktop app, but triggers blanket corporate bans. GPL-3.0 still requires forks to stay open source (preventing proprietary commercial forks) while being accepted by most corporate policies for desktop software. Changes: - LICENSE: Replace AGPL-3.0 text with GPL-3.0 text - Update dual-license header (AGPL → GPL) - Update all README translations, CONTRIBUTING.md, package.json files - Historical changelog/project entries left as-is * Fix French and Italian grammar in license section AGPL starts with a vowel so "l'AGPL" / "all'AGPL" were correct. GPL starts with a consonant, so use "la GPL" / "alla GPL" instead. --------- Co-authored-by: Lawrence Chen <lawrencecchen@users.noreply.github.com>
45 lines
987 B
JSON
45 lines
987 B
JSON
{
|
|
"name": "web",
|
|
"version": "0.1.0",
|
|
"license": "GPL-3.0-or-later",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev --port 3777",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "eslint"
|
|
},
|
|
"dependencies": {
|
|
"@t3-oss/env-nextjs": "^0.13.10",
|
|
"@vercel/firewall": "^1.1.2",
|
|
"next": "16.1.6",
|
|
"next-intl": "^4.8.3",
|
|
"next-themes": "^0.4.6",
|
|
"posthog-js": "^1.350.0",
|
|
"react": "19.2.3",
|
|
"react-dom": "19.2.3",
|
|
"react-tweet": "^3.3.0",
|
|
"react-wrap-balancer": "^1.1.1",
|
|
"resend": "^6.9.3",
|
|
"shiki": "^3.22.0",
|
|
"zod": "^4.3.6"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "^4",
|
|
"@types/node": "^20",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "16.1.6",
|
|
"tailwindcss": "^4",
|
|
"typescript": "^5"
|
|
},
|
|
"ignoreScripts": [
|
|
"sharp",
|
|
"unrs-resolver"
|
|
],
|
|
"trustedDependencies": [
|
|
"sharp",
|
|
"unrs-resolver"
|
|
]
|
|
}
|