forked from yassinedoghri/astro-i18next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
130 lines (130 loc) · 3.65 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
{
"name": "astro-i18next",
"version": "1.0.0-beta.21",
"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",
"pack": "pnpm run build && pnpm pack",
"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",
"prepare": "is-ci || husky install",
"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": "[email protected]",
"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"
},
"dependencies": {
"@proload/core": "^0.3.3",
"@proload/plugin-tsm": "^0.2.1",
"i18next": "^22.4.10",
"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/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/fs-extra": "^11.0.1",
"@types/yargs": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"@vitest/coverage-c8": "^0.29.2",
"all-contributors-cli": "^6.24.0",
"astro": "2.0.17",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"esbuild-plugin-fileloc": "^0.0.6",
"esbuild": "^0.17.11",
"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",
"eslint": "^8.35.0",
"fdir": "^6.0.1",
"fs-extra": "^11.1.0",
"husky": "^8.0.3",
"i18next": "^22.4.10",
"is-ci": "^3.0.1",
"lint-staged": "^13.1.2",
"prettier-plugin-astro": "^0.8.0",
"prettier": "2.8.4",
"semantic-release": "^20.1.1",
"typescript": "^4.9.5",
"vitest": "^0.29.2",
"yargs": "^17.7.1"
},
"lint-staged": {
"*.{js,cjs,ts}": "eslint --ext js,cjs,ts . --cache --fix",
"*.{js,cjs,ts,astro,css,md}": "prettier --write --ignore-path .prettierignore ."
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}