174 lines
4.5 KiB
JSON
Raw Normal View History

2025-09-05 14:59:21 +08:00
{
"name": "@nuxtjs/i18n",
"version": "8.5.6",
"description": "Internationalization for Nuxt",
"keywords": [
"nuxt",
"i18n",
"internationalization",
"nuxt-module"
],
"homepage": "https://i18n.nuxtjs.org",
"bugs": {
"url": "https://github.com/nuxt-modules/i18n/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt-modules/i18n.git"
},
"license": "MIT",
"contributors": [
{
"name": "Paul Gascou-Vaillancourt (@paulgv)"
},
{
"name": "Rafal Chlodnicki (@rchl)"
},
{
"name": "Kazuya Kawaguchi (@kazupon)"
},
{
"name": "Bobbie Goede (@BobbieGoede)"
}
],
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs",
"types": "./dist/types.d.ts"
},
"./package.json": "./package.json"
},
"imports": {
"#i18n": "./dist/runtime/composables/index.js"
},
"main": "./dist/module.cjs",
"module": "./dist/module.mjs",
"types": "./dist/types.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"prepare": "git config --local core.hooksPath .githooks",
"build": "nuxi build-module .",
"stub": "nuxi build-module --stub .",
"prepack": "pnpm build",
"release": "bumpp --commit \"release: v%s\" --push --tag",
"changelog": "gh-changelogen --repo=nuxt-community/i18n-module",
"dev": "pnpm dev:prepare && pnpm build --sourcemap && nuxi dev playground",
"dev:prepare": "nuxi prepare",
"dev:build": "nuxi build playground",
"dev:generate": "nuxi generate playground",
"dev:preview": "nuxi preview playground",
"dev:clean": "rm -rf playground/.nuxt playground/dist playground/.output",
"docs:dev": "nuxi dev docs",
"docs:build": "nuxi build docs",
"docs:generate": "nuxi generate docs",
"docs:preview": "nuxi preview docs",
"fix": "run-s \"fix:*\"",
"fix:prettier": "prettier . --write",
"fix:eslint": "pnpm lint:eslint --fix",
"lint": "run-p \"lint:* {@}\" --",
"lint:prettier": "prettier . --check",
"lint:eslint": "eslint .",
"test": "pnpm dev:prepare && run-s test:types test:unit test:spec",
"test:types": "tsc --noEmit --project tsconfig.test.json",
"test:unit": "vitest run test",
"test:spec": "vitest run specs"
},
"packageManager": "pnpm@9.4.0",
"pnpm": {
"overrides": {
"@nuxtjs/i18n": "link:.",
"jiti": "1.21.0",
"h3": "1.11.0",
"ufo": "^1.5.1",
"consola": "^3"
}
},
"dependencies": {
"@intlify/h3": "^0.5.0",
"@intlify/shared": "^9.14.1",
"@intlify/unplugin-vue-i18n": "^3.0.1",
"@intlify/utils": "^0.12.0",
"@miyaneee/rollup-plugin-json5": "^1.2.0",
"@nuxt/kit": "^3.13.1",
"@rollup/plugin-yaml": "^4.1.2",
"@vue/compiler-sfc": "^3.5.4",
"debug": "^4.3.5",
"defu": "^6.1.2",
"estree-walker": "^3.0.3",
"is-https": "^4.0.0",
"knitwork": "^1.1.0",
"magic-string": "^0.30.10",
"mlly": "^1.7.1",
"pathe": "^1.1.1",
"scule": "^1.1.1",
"sucrase": "^3.35.0",
"ufo": "^1.3.1",
"unplugin": "^1.10.1",
"vue-i18n": "^9.14.1",
"vue-router": "^4.4.4"
},
"devDependencies": {
"@babel/parser": "^7.24.7",
"@babel/plugin-syntax-import-assertions": "^7.24.7",
"@babel/types": "^7.24.7",
"@eslint/js": "9.5.0",
"@nuxt/module-builder": "^0.8.3",
"@nuxt/schema": "^3.13.1",
"@types/debug": "^4.1.9",
"@types/eslint": "^8.56.6",
"@unhead/vue": "^1.8.8",
"bumpp": "^9.4.1",
"changelogithub": "^0.13.7",
"consola": "^3",
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"execa": "^9.3.0",
"get-port-please": "^3.1.1",
"gh-changelogen": "^0.2.8",
"globals": "^15.6.0",
"globby": "^14.0.0",
"h3": "^1.10.1",
"jiti": "^1.20.0",
"jsdom": "^24.1.0",
"lint-staged": "^15.2.7",
"nitropack": "^2.9.6",
"npm-run-all2": "^6.2.0",
"nuxt": "^3.13.1",
"ofetch": "^1.3.4",
"pkg-pr-new": "^0.0.20",
"playwright": "^1.38.1",
"prettier": "^3.3.2",
"ts-essentials": "^9.4.2",
"typescript": "^5.5.2",
"typescript-eslint": "^7.14.0",
"unbuild": "^2.0.0",
"undici": "^6.19.2",
"unhead": "^1.8.8",
"vitest": "^1.6.0",
"vue": "^3.5.4"
},
"lint-staged": {
"*.{json,md,yml}": [
"prettier --write"
],
"*.{js,vue}": [
"prettier --write",
"eslint --fix"
],
"*.ts?(x)": [
"prettier --parser=typescript --write",
"eslint --fix"
]
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": "^14.16.0 || >=16.11.0"
}
}