-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.67 KB
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
{
"name": "i18nextify",
"version": "5.0.1",
"description": "enables localization of any page with zero effort",
"type": "module",
"sideEffects": false,
"engines": {
"node": ">=18"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"browser": "./i18nextify.min.js",
"types": "./dist/esm/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
},
"./cjs": "./dist/cjs/index.js",
"./esm": "./dist/esm/index.js"
},
"keywords": [
"i18next",
"i18nextify",
"localization",
"internationalization",
"i18n",
"l10n",
"translation",
"virtual-dom"
],
"homepage": "https://github.com/i18next/i18nextify",
"bugs": "https://github.com/i18next/i18nextify/issues",
"dependencies": {
"i18next": "26.3.6",
"i18next-browser-languagedetector": "8.2.1",
"i18next-http-backend": "4.0.1",
"udc": "1.0.1",
"vdom-parser": "1.4.1",
"vdom-to-html": "2.3.1",
"vdom-virtualize": "2.0.0",
"virtual-dom": "2.1.1"
},
"scripts": {
"lint": "eslint .",
"build": "tsdown",
"test": "vitest run",
"test:watch": "vitest",
"preversion": "npm run lint && npm run build && npm test && git push",
"postversion": "git push && git push --tags"
},
"author": "Jan Mühlemann <jan.muehlemann@gmail.com> (https://github.com/jamuhl)",
"license": "MIT",
"devDependencies": {
"eslint": "9.39.4",
"globals": "17.6.0",
"html-to-vdom": "0.7.0",
"jsdom": "29.1.1",
"neostandard": "0.13.0",
"tsdown": "0.21.10",
"vitest": "4.1.5"
}
}