forked from nuxt-modules/i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
161 lines (161 loc) · 4.37 KB
/
package.json
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"name": "@nuxtjs/i18n",
"description": "i18n for Nuxt",
"version": "9.0.0-alpha.1",
"homepage": "https://i18n.nuxtjs.org",
"bugs": {
"url": "https://github.com/nuxt-community/i18n-module/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt-community/i18n-module.git"
},
"license": "MIT",
"contributors": [
{
"name": "Paul Gascou-Vaillancourt (@paulgv)"
},
{
"name": "Rafal Chlodnicki (@rchl)"
},
{
"name": "Kazuya Kawaguchi (@kazupon)"
}
],
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs",
"types": "./dist/types.d.ts"
},
"./package.json": "./package.json"
},
"imports": {
"#i18n": "./dist/runtime/composables/index.mjs"
},
"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",
"consola": "^3"
}
},
"dependencies": {
"@intlify/h3": "^0.5.0",
"@intlify/shared": "^10.0.0-beta.1",
"@intlify/unplugin-vue-i18n": "^5.0.0-beta.3",
"@intlify/utils": "^0.12.0",
"@miyaneee/rollup-plugin-json5": "^1.2.0",
"@nuxt/kit": "^3.12.3",
"@rollup/plugin-yaml": "^4.1.2",
"@vue/compiler-sfc": "^3.4.31",
"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": "^10.0.0-beta.1",
"vue-router": "^4.4.0"
},
"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.6.0",
"@nuxt/schema": "^3.12.3",
"@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.12.0",
"jiti": "^1.20.0",
"jsdom": "^24.1.0",
"lint-staged": "^15.2.7",
"nitropack": "^2.9.7",
"npm-run-all2": "^6.2.0",
"nuxt": "^3.12.3",
"ofetch": "^1.3.4",
"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.4.31"
},
"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"
}
}