forked from yassinedoghri/astro-i18next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.34 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
{
"name": "astro-i18next",
"version": "1.0.0-beta.5",
"description": "An astro integration of i18next + some utility components to help you translate your astro websites!",
"scripts": {
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
"test:coverage": "npm test -- --coverage",
"preview": "astro preview",
"build": "./build.cjs && npm run typecheck:emit && npm link .",
"lint": "eslint --ext js,cjs,ts .",
"prettier": "prettier --check --ignore-path .gitignore .",
"prettier:fix": "prettier --write --ignore-path .gitignore .",
"typecheck": "tsc --noEmit",
"typecheck:emit": "tsc --declaration --emitDeclarationOnly --outDir dist/types",
"commit": "cz",
"prepare": "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.2",
"@proload/plugin-typescript": "^0.2.1",
"fdir": "^5.2.0",
"fs-extra": "^10.1.0",
"i18next": "^21.9.1",
"iso-3166-1-alpha-2": "^1.0.0",
"iso-639-1": "^2.1.15",
"locale-emoji": "^0.3.0",
"yargs": "^17.5.1"
},
"devDependencies": {
"@commitlint/cli": "^17.1.1",
"@commitlint/config-conventional": "^17.1.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^28.1.8",
"@types/yargs": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"all-contributors-cli": "^6.20.0",
"astro": "1.1.1",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.15.5",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.8.7",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "2.7.1",
"prettier-plugin-astro": "^0.5.3",
"semantic-release": "^19.0.5",
"ts-jest": "^28.0.8",
"typescript": "^4.8.2"
},
"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"
}
}
}