forked from yassinedoghri/astro-i18next
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 3.53 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
{
"name": "astro-i18next",
"version": "1.0.0-beta.18",
"description": "An astro integration of i18next + some utility components to help you translate your astro websites!",
"scripts": {
"test": "vitest",
"test:coverage": "pnpm test -- --coverage",
"preview": "astro preview",
"build": "./build.cjs && pnpm run typecheck:emit",
"prepack": "./build.cjs && pnpm run typecheck:emit",
"lint": "eslint --ext js,cjs,ts .",
"prettier": "prettier --check --ignore-path .prettierignore .",
"prettier:fix": "prettier --write --ignore-path .prettierignore .",
"typecheck": "tsc --noEmit",
"typecheck:emit": "tsc --declaration --emitDeclarationOnly --outDir dist/types",
"commit": "cz",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/yassinedoghri/astro-i18next.git"
},
"files": [
"src",
"!src/index.d.ts",
"!src/__tests__",
"dist"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": "./dist/index.js",
"./components": "./src/components/index.ts"
},
"typesVersions": {
"*": {
"index": [
"./dist/types/index.d.ts"
],
"components": [
"./src/components/index.d.ts"
]
}
},
"bin": {
"astro-i18next": "./dist/cli/index.js"
},
"keywords": [
"astro-component",
"seo",
"i18next",
"i18n",
"internationalization",
"i10n",
"localization"
],
"author": {
"name": "Yassine Doghri",
"email": "yassine@doghri.fr",
"url": "https://yassinedoghri.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/yassinedoghri/astro-i18next/issues"
},
"homepage": "https://astro-i18next.yassinedoghri.com/",
"peerDependencies": {
"astro": ">=1.0.0",
"i18next": ">=22.4.0"
},
"dependencies": {
"@proload/core": "^0.3.3",
"@proload/plugin-tsm": "^0.2.1",
"i18next-browser-languagedetector": "^7.0.1",
"i18next-fs-backend": "^2.1.1",
"i18next-http-backend": "^2.1.1",
"iso-639-1": "^2.1.15",
"locale-emoji": "^0.3.0",
"pathe": "^1.1.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@types/fs-extra": "^11.0.1",
"@types/yargs": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"@vitest/coverage-c8": "^0.29.1",
"all-contributors-cli": "^6.24.0",
"astro": "2.0.15",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.17.10",
"esbuild-plugin-fileloc": "^0.0.6",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"fdir": "^6.0.1",
"fs-extra": "^11.1.0",
"i18next": "^22.4.10",
"is-ci": "^3.0.1",
"lint-staged": "^13.1.2",
"prettier": "2.8.4",
"prettier-plugin-astro": "^0.8.0",
"semantic-release": "^20.1.0",
"typescript": "^4.9.5",
"vitest": "^0.29.1",
"yargs": "^17.7.1"
},
"lint-staged": {
"*.{js,cjs,ts}": "eslint --ext js,cjs,ts . --cache --fix",
"*.{js,cjs,ts,astro,css,md}": "prettier --write"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}