-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.43 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.43 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
{
"name": "locizify",
"version": "10.0.0",
"description": "main script for using locize service in frontend",
"type": "module",
"sideEffects": false,
"engines": {
"node": ">=18"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"browser": "./locizify.min.js",
"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": [
"locizify",
"locize",
"internationalization",
"localization",
"i18n",
"l10n"
],
"homepage": "https://github.com/locize/locizify",
"bugs": "https://github.com/locize/locizify/issues",
"repository": {
"type": "git",
"url": "git://github.com/locize/locizify.git"
},
"dependencies": {
"i18next-locize-backend": "10.0.0",
"i18nextify": "5.0.0",
"locize": "4.0.22"
},
"devDependencies": {
"eslint": "9.39.2",
"eslint-plugin-import": "2.32.0",
"neostandard": "0.13.0",
"tsdown": "0.21.10"
},
"scripts": {
"lint": "eslint .",
"build": "tsdown",
"test": "npm run lint && npm run build",
"preversion": "npm run test && git push",
"postversion": "git push && git push --tags"
},
"author": "Jan Mühlemann <jan.muehlemann@gmail.com> (https://github.com/jamuhl)",
"license": "MIT"
}