-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.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
{
"name": "@connectedcars/react-i18n",
"author": "Connected Cars <[email protected]>",
"version": "2.3.4",
"description": "Translations!",
"license": "MIT",
"homepage": "https://github.com/connectedcars/react-i18n#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/connectedcars/react-i18n.git"
},
"bugs": {
"url": "https://github.com/connectedcars/react-i18n/issues"
},
"main": "dist/index.js",
"typings": "./dist/index.d.ts",
"bin": {
"i18n-import": "bin/import.js",
"i18n-export": "bin/export.js",
"i18n-translation-status": "bin/translation-status.js"
},
"scripts": {
"watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"build": "tsc",
"prepublishOnly": "rm -rf dist/ && tsc",
"patch": "npm version patch -m 'Release v%s'",
"lint": "eslint --ext js,ts,tsx,graphql src",
"lint:fix": "eslint --fix --ext js,ts,tsx,graphql src"
},
"files": [
"bin",
"dist",
"src"
],
"keywords": [
"i18n",
"internationalization",
"translations",
"react",
"reactjs",
"context",
"po",
"poedit",
"gettext"
],
"dependencies": {
"@connectedcars/po2json": "2.0.0",
"gettext-extractor": "3.6.1"
},
"devDependencies": {
"@types/jest": "29.5.5",
"@types/react": "18.2.28",
"@types/react-dom": "18.2.13",
"@typescript-eslint/eslint-plugin": "6.8.0",
"@typescript-eslint/parser": "6.8.0",
"eslint": "8.51.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-simple-import-sort": "10.0.0",
"jest": "29.7.0",
"prettier": "3.0.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"ts-jest": "29.1.1",
"typescript": "5.2.2"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
}
}