-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
33 lines (33 loc) · 1.05 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
{
"name": "i18next-electron-fs-backend",
"version": "3.0.3",
"description": "An i18next backend plugin that allows you to use local translation files for your electron app, following electron's best-security practices.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npm run genTypes & npx babel ./src -d ./lib",
"genTypes": "tsc src/*.js --declaration --allowJs --emitDeclarationOnly --outDir ./lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reZach/i18next-electron-fs-backend.git"
},
"keywords": [],
"author": "reZach",
"license": "MIT",
"bugs": {
"url": "https://github.com/reZach/i18next-electron-fs-backend/issues"
},
"homepage": "https://github.com/reZach/i18next-electron-fs-backend#readme",
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"babel-preset-minify": "^0.5.2",
"typescript": "^5.7.2"
},
"dependencies": {
"lodash.clonedeep": "^4.5.0",
"lodash.merge": "^4.6.2"
}
}