Add internationalization support with astro-i18next integration
- Implemented astro-i18next for multi-language support, including English, Dutch, and Italian. - Configured default locale and language fallback settings. - Defined routes for localized content in the configuration. - Updated package.json and package-lock.json to include new dependencies for i18next and related plugins.
This commit is contained in:
51
node_modules/tsm/package.json
generated
vendored
Normal file
51
node_modules/tsm/package.json
generated
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
{
|
||||
"name": "tsm",
|
||||
"version": "2.3.0",
|
||||
"repository": "lukeed/tsm",
|
||||
"description": "TypeScript Module Loader",
|
||||
"license": "MIT",
|
||||
"bin": "bin.js",
|
||||
"author": {
|
||||
"name": "Luke Edwards",
|
||||
"email": "luke.edwards05@gmail.com",
|
||||
"url": "https://lukeed.com"
|
||||
},
|
||||
"exports": {
|
||||
".": {
|
||||
"import": "./loader.mjs",
|
||||
"require": "./require.js"
|
||||
},
|
||||
"./config": "./config/index.js",
|
||||
"./package.json": "./package.json"
|
||||
},
|
||||
"files": [
|
||||
"bin.js",
|
||||
"utils.js",
|
||||
"require.js",
|
||||
"loader.mjs",
|
||||
"config"
|
||||
],
|
||||
"engines": {
|
||||
"node": ">=12"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "node build",
|
||||
"types": "tsc --skipLibCheck"
|
||||
},
|
||||
"dependencies": {
|
||||
"esbuild": "^0.15.16"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "16.11.6",
|
||||
"@types/react": "17.0.33",
|
||||
"typescript": "4.9.3"
|
||||
},
|
||||
"keywords": [
|
||||
"esm",
|
||||
"loader",
|
||||
"typescript",
|
||||
"loader hook",
|
||||
"require hook",
|
||||
"experimental-loader"
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user