- 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.
52 lines
966 B
JSON
52 lines
966 B
JSON
{
|
|
"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"
|
|
]
|
|
}
|