File tree Expand file tree Collapse file tree 7 files changed +1131
-2928
lines changed Expand file tree Collapse file tree 7 files changed +1131
-2928
lines changed Original file line number Diff line number Diff line change 19
19
"test:e2e:safari" : " npx cypress run --e2e --browser safari"
20
20
},
21
21
"dependencies" : {
22
- "@carbon/icons-vue" : " ^10.109.0 " ,
22
+ "@carbon/icons-vue" : " ^10.99.1 " ,
23
23
"@carbon/themes" : " ^10.55.6" ,
24
24
"@carbon/vue" : " ^3.0.27" ,
25
25
"@nuxt/eslint" : " ^1.4.1" ,
26
- "@nuxtjs/i18n" : " ^10.0 .0" ,
26
+ "@nuxtjs/i18n" : " ^10.1 .0" ,
27
27
"@nuxtjs/tailwindcss" : " ^6.14.0" ,
28
- "@sidebase/nuxt-auth" : " ^1.0.0 " ,
28
+ "@sidebase/nuxt-auth" : " ^1.0.2 " ,
29
29
"lodash.merge" : " ^4.6.2" ,
30
- "luxon" : " ^3.6.1" ,
31
- "next-auth" : " ~4.21.1" ,
32
- "nuxt" : " ^4.0.1" ,
30
+ "luxon" : " ^3.7.2" ,
31
+ "nuxt" : " ^4.1.2" ,
33
32
"vue" : " latest" ,
34
33
"vue-router" : " latest" ,
35
34
"winston" : " ^3.17.0"
39
38
"cypress" : " ^15.2.0" ,
40
39
"eslint" : " ^9.36.0" ,
41
40
"eslint-plugin-tailwindcss" : " ^3.18.0" ,
42
- "sass" : " ^1.89.2 "
41
+ "sass" : " ^1.93.0 "
43
42
},
44
43
"resolutions" : {
45
44
"vue-i18n" : " 10.0.6"
Original file line number Diff line number Diff line change 20
20
"@carbon/icons-vue" : " ^10.99.1" ,
21
21
"@carbon/themes" : " ^10.55.6" ,
22
22
"@carbon/vue" : " ^3.0.26" ,
23
- "@vueuse/components" : " ^13.3 .0" ,
23
+ "@vueuse/components" : " ^13.9 .0" ,
24
24
"@vueuse/core" : " ^13.2.0" ,
25
- "carbon-components" : " ^10.59.1 " ,
26
- "i18next" : " ^25.2.0 " ,
25
+ "carbon-components" : " ^10.59.2 " ,
26
+ "i18next" : " ^25.5.2 " ,
27
27
"i18next-http-backend" : " ^3.0.2" ,
28
28
"i18next-vue" : " ^5.3.0" ,
29
29
"lodash" : " ^4.17.21" ,
30
30
"pinia" : " ^3.0.2" ,
31
- "sass" : " ^1.89 .0" ,
31
+ "sass" : " ^1.93 .0" ,
32
32
"vue" : " ^3.5.14" ,
33
33
"vue-router" : " ^4.5.1"
34
34
},
35
35
"devDependencies" : {
36
36
"@eslint/js" : " ^9.27.0" ,
37
- "@stylistic/eslint-plugin" : " ^4 .4.1 " ,
37
+ "@stylistic/eslint-plugin" : " ^5 .4.0 " ,
38
38
"@tailwindcss/postcss" : " ^4.1.13" ,
39
39
"@tailwindcss/vite" : " ^4.1.13" ,
40
40
"@tsconfig/node22" : " ^22.0.2" ,
Original file line number Diff line number Diff line change 2
2
* Shared localized name language keys across ACNH datasets.
3
3
*/
4
4
5
- export type NameLanguageKey =
6
- | "name-USen"
7
- | "name-EUen"
8
- | "name-EUde"
9
- | "name-EUes"
10
- | "name-USes"
11
- | "name-EUfr"
12
- | "name-USfr"
13
- | "name-EUit"
14
- | "name-EUnl"
15
- | "name-CNzh"
16
- | "name-TWzh"
17
- | "name-JPja"
18
- | "name-KRko"
19
- | "name-EUru" ;
5
+ export type NameLanguageKey
6
+ = | "name-USen"
7
+ | "name-EUen"
8
+ | "name-EUde"
9
+ | "name-EUes"
10
+ | "name-USes"
11
+ | "name-EUfr"
12
+ | "name-USfr"
13
+ | "name-EUit"
14
+ | "name-EUnl"
15
+ | "name-CNzh"
16
+ | "name-TWzh"
17
+ | "name-JPja"
18
+ | "name-KRko"
19
+ | "name-EUru" ;
20
20
21
21
/**
22
22
* Generic localized map for names keyed by NameLanguageKey by default.
Original file line number Diff line number Diff line change 5
5
6
6
import { LocalizedNameMap } from "./language" ;
7
7
8
- export type CatchTranslationKey =
9
- | "catch-USen"
10
- | "catch-EUen"
11
- | "catch-EUde"
12
- | "catch-EUes"
13
- | "catch-USes"
14
- | "catch-EUfr"
15
- | "catch-USfr"
16
- | "catch-EUit"
17
- | "catch-EUnl"
18
- | "catch-CNzh"
19
- | "catch-TWzh"
20
- | "catch-JPja"
21
- | "catch-KRko"
22
- | "catch-EUru" ;
8
+ export type CatchTranslationKey
9
+ = | "catch-USen"
10
+ | "catch-EUen"
11
+ | "catch-EUde"
12
+ | "catch-EUes"
13
+ | "catch-USes"
14
+ | "catch-EUfr"
15
+ | "catch-USfr"
16
+ | "catch-EUit"
17
+ | "catch-EUnl"
18
+ | "catch-CNzh"
19
+ | "catch-TWzh"
20
+ | "catch-JPja"
21
+ | "catch-KRko"
22
+ | "catch-EUru" ;
23
23
24
24
export type CatchTranslationsMap = Record < CatchTranslationKey , string > ;
25
25
Original file line number Diff line number Diff line change 15
15
"ci:lint" : " eslint --max-warnings 0"
16
16
},
17
17
"dependencies" : {
18
- "@carbon/grid" : " ^11.38 .0" ,
19
- "@carbon/icons-vue" : " ^10.111.0 " ,
18
+ "@carbon/grid" : " ^11.43 .0" ,
19
+ "@carbon/icons-vue" : " ^10.99.1 " ,
20
20
"@carbon/themes" : " ^11.55.0" ,
21
- "@carbon/web-components" : " ^2.32.1 " ,
22
- "@stylistic/eslint-plugin" : " ^5.1 .0" ,
21
+ "@carbon/web-components" : " ^2.36.0 " ,
22
+ "@stylistic/eslint-plugin" : " ^5.4 .0" ,
23
23
"@vueuse/core" : " ^13.5.0" ,
24
- "i18next" : " ^25.3.1 " ,
24
+ "i18next" : " ^25.5.2 " ,
25
25
"i18next-http-backend" : " ^3.0.2" ,
26
26
"i18next-vue" : " ^5.3.0" ,
27
27
"lodash" : " ^4.17.21" ,
28
28
"pinia" : " ^3.0.3" ,
29
- "sass" : " ^1.89.2 " ,
29
+ "sass" : " ^1.93.0 " ,
30
30
"superagent" : " ^10.2.1" ,
31
31
"v-lazy-image" : " ^2.1.1" ,
32
32
"vue" : " ^3.5.17" ,
You can’t perform that action at this time.
0 commit comments