fast-react-i18n
Version:
Minimalist i18n library for React and Next.js
51 lines (50 loc) • 1.26 kB
JSON
{
"name": "fast-react-i18n",
"version": "0.1.2",
"description": "Minimalist i18n library for React and Next.js",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --dts --format esm,cjs --out-dir dist",
"dev": "tsup src/index.ts --watch --dts --format esm,cjs --out-dir dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"react",
"i18n",
"multilang",
"translation",
"nextjs"
],
"author": "Marc Martinez <dev.marcmartinez@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MarcMartinezDev/fast-react-i18n.git"
},
"bugs": {
"url": "https://github.com/MarcMartinezDev/fast-react-i18n/issues"
},
"homepage": "https://github.com/MarcMartinezDev/fast-react-i18n#readme",
"peerDependencies": {
"react": ">=18.2.0",
"react-dom": ">=18.2.0"
},
"devDependencies": {
"@types/react": "^18.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
}
}