forked from nuxt-modules/i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
133 lines (133 loc) · 3.58 KB
/
Copy pathpackage.json
File metadata and controls
133 lines (133 loc) · 3.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "@nuxtjs/i18n",
"type": "module",
"version": "10.4.0",
"packageManager": "pnpm@10.13.1",
"description": "Internationalization for Nuxt",
"contributors": [
{
"name": "Paul Gascou-Vaillancourt (@paulgv)"
},
{
"name": "Rafal Chlodnicki (@rchl)"
},
{
"name": "Kazuya Kawaguchi (@kazupon)"
},
{
"name": "Bobbie Goede (@BobbieGoede)"
}
],
"license": "MIT",
"homepage": "https://i18n.nuxtjs.org",
"funding": "https://github.com/sponsors/bobbiegoede",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt-modules/i18n.git"
},
"bugs": {
"url": "https://github.com/nuxt-modules/i18n/issues"
},
"keywords": [
"nuxt",
"i18n",
"internationalization",
"nuxt-module"
],
"exports": {
".": "./dist/module.mjs",
"./package.json": "./package.json"
},
"imports": {
"#i18n": "./dist/runtime/composables/index.js",
"#i18n-kit/*": "./dist/runtime/kit/*.js",
"#internal-i18n-types": "./dist/types.d.mts"
},
"main": "./dist/module.mjs",
"files": [
"dist",
"internals.d.ts"
],
"scripts": {
"build": "nuxt-module-build prepare && nuxt-module-build build .",
"stub": "nuxt-module-build build --stub .",
"prepack": "pnpm build",
"release": "bumpp --commit \"release: v%s\" --push --tag",
"dev": "nuxt dev playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare",
"dev:build": "nuxt build playground",
"dev:generate": "nuxt generate playground",
"dev:preview": "nuxt preview playground",
"docs:generate": "pnpm run --filter docs generate",
"docs:dev": "pnpm run --filter docs dev",
"lint": "eslint . --cache",
"lint:fix": "eslint . --cache --fix",
"lint:knip": "knip --workspace .",
"test": "nuxt-module-build prepare && pnpm test:types && pnpm test:unit && pnpm test:e2e",
"test:types": "tsc --noEmit",
"test:unit": "vitest run test -c vitest.config.test.ts",
"test:e2e": "vitest run specs"
},
"resolutions": {
"@nuxtjs/i18n": "workspace:*"
},
"dependencies": {
"@intlify/core": "^11.4.0",
"@intlify/h3": "^0.7.4",
"@intlify/shared": "^11.4.0",
"@intlify/unplugin-vue-i18n": "^11.1.2",
"@intlify/utils": "^0.14.1",
"@miyaneee/rollup-plugin-json5": "^1.2.0",
"@nuxt/kit": "^4.4.4",
"@rollup/plugin-yaml": "^4.1.2",
"@vue/compiler-sfc": "^3.5.22",
"defu": "^6.1.4",
"devalue": "^5.8.0",
"h3": "^1.15.4",
"knitwork": "^1.2.0",
"magic-string": "^0.30.21",
"mlly": "^1.7.4",
"nuxt-define": "^1.0.0",
"oxc-parser": "^0.128.0",
"oxc-transform": "^0.128.0",
"oxc-walker": "^0.7.0",
"pathe": "^2.0.3",
"ufo": "^1.6.1",
"unplugin": "^3.0.0",
"unrouting": "^0.1.5",
"unstorage": "^1.16.1",
"vue-i18n": "^11.4.0",
"vue-router": "^5.0.4"
},
"devDependencies": {
"@nuxt/eslint-config": "^1.15.2",
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.4.4",
"bumpp": "^10.2.0",
"consola": "^3.4.2",
"eslint": "^10.2.1",
"eslint-plugin-perfectionist": "^5.9.0",
"eslint-typegen": "^2.3.0",
"get-port-please": "^3.2.0",
"jiti": "^2.5.1",
"knip": "6.9.0",
"nitropack": "^2.13.1",
"nuxt": "^4.4.4",
"ofetch": "^1.4.1",
"playwright-core": "^1.59.1",
"scule": "^1.3.0",
"sirv": "^3.0.2",
"tinyexec": "^1.0.1",
"typescript": "^5.9.3",
"unbuild": "^3.6.0",
"undici": "^8.1.0",
"vitest": "^4.1.5",
"vue": "^3.5.30"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.11.1"
}
}