-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
62 lines (62 loc) · 2.14 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
{
"name": "i18next-phrase-in-context-editor-post-processor",
"description": "Plugin for i18next that paires well with Phrase In-Context Editor",
"version": "1.6.1",
"source": "index.ts",
"main": "dist/i18next-phrase-in-context-editor-post-processor.js",
"unpkg": "dist/i18next-phrase-in-context-editor-post-processor.umd.js",
"module": "dist/i18next-phrase-in-context-editor-post-processor.module.js",
"esmodule": "dist/i18next-phrase-in-context-editor-post-processor.modern.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/phrase/i18next-phrase-in-context-editor-post-processor.git",
"author": "Jakub Freisler <[email protected]>",
"license": "MIT",
"sideEffects": false,
"scripts": {
"build": "microbundle build",
"start": "microbundle watch",
"test": "jest test",
"test.coverage": "yarn test --coverage",
"lint": "eslint '**/*.ts' --ignore-pattern '**/*.d.ts'",
"lint.fix": "yarn lint --fix",
"docs.dev": "export NODE_OPTIONS=--openssl-legacy-provider && vuepress dev docs",
"docs.build": "export NODE_OPTIONS=--openssl-legacy-provider && vuepress build docs",
"release": "semantic-release"
},
"peerDependencies": {
"i18next": "^19.5.1 || ^20.6.1 || ^21.6.0 || ^22.0.0 || ^23.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^26.0.3",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"eslint": "^7.3.1",
"eslint-config-phrase": "https://github.com/phrase/eslint-config-phrase.git",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"microbundle": "^0.15.1",
"semantic-release": "^19.0.3",
"ts-jest": "^29.1.1",
"typescript": "^4.3.0",
"vuepress": "^1.9.10",
"vuepress-plugin-clean-urls": "^1.1.1",
"vuepress-plugin-seo": "^0.1.3"
},
"dependencies": {
"@sagi.io/globalthis": "^0.0.2"
},
"keywords": [
"i18next",
"i18next post processor",
"Phrase",
"In-Context Editor",
"translate",
"translation",
"i18n",
"l10n",
"localization",
"internationalization"
]
}