forked from mbarzda/solid-i18next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.85 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
{
"author": "Martynas Barzda <[email protected]>",
"description": "i18next for SolidJS",
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.23.2",
"@solidjs/testing-library": "^0.8.4",
"@types/jest": "^29.5.7",
"babel-preset-solid": "^1.8.4",
"html-parse-string": "^0.0.9",
"i18next": "^23.6.0",
"i18next-http-backend": "^2.3.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"solid-jest": "^0.2.0",
"solid-js": "^1.8.5",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vite-plugin-solid": "^2.7.2"
},
"exports": {
".": {
"browser": "./dist/browser.mjs",
"import": "./dist/ssr.mjs",
"require": "./dist/ssr.js",
"types": "./dist/types/index.d.ts",
"default": "./dist/browser.mjs"
}
},
"files": [
"dist",
"CHANGELOG.md"
],
"keywords": [
"i18n",
"i18next",
"internationalization",
"intl",
"language",
"localization",
"solid",
"solid-js",
"solidjs",
"translate",
"translations"
],
"license": "MIT",
"main": "./dist/ssr.js",
"module": "./dist/ssr.mjs",
"name": "@mbarzda/solid-i18next",
"peerDependencies": {
"html-parse-string": "<=1.x",
"i18next": ">=23.x",
"solid-js": ">=1.8.x"
},
"peerDependenciesMeta": {
"html-parse-string": {
"optional": true
}
},
"repository": "github:mbarzda/solid-i18next",
"scripts": {
"build:browser": "vite build --config vite.browser.config.js",
"build:docs": "vite build --config vite.docs.config.js",
"build:ssr": "vite build --config vite.ssr.config.js",
"build:types": "tsc --project tsconfig.types.json",
"docs": "vite --config vite.docs.config.js",
"test": "jest --coverage",
"test:dev": "jest"
},
"sideEffects": false,
"type": "module",
"types": "./dist/types/index.d.ts",
"version": "1.4.1"
}