-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.46 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.46 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "react-intl-phraseapp",
"version": "5.0.2",
"description": "The In-Context-Editor for react using react-intl",
"homepage": "https://phrase.com",
"scripts": {
"test": "jest",
"dev": "webpack-cli --mode development",
"dist": "webpack-cli --mode production",
"prepublishOnly": "rm -rf dist/ && npm run dist",
"release:dry-run": "semantic-release -d",
"release": "semantic-release"
},
"keywords": [
"react",
"react-intl",
"phraseapp",
"i18n",
"localization",
"phrase"
],
"repository": {
"type": "git",
"url": "https://github.com/phrase/react-intl-phraseapp.git"
},
"bugs": {
"url": "https://github.com/phrase/react-intl-phraseapp/issues",
"email": "support@phrase.com"
},
"author": "Phrase",
"license": "MIT",
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@types/jest": "^30.0.0",
"@types/node": "^24.3.1",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"@types/react-test-renderer": "^19.1.0",
"jest": "^30.1.3",
"jest-environment-jsdom": "^30.1.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-intl": "^7.1.11",
"react-test-renderer": "^19.1.1",
"semantic-release": "24",
"ts-jest": "^29.4.1",
"ts-loader": "^9.5.4",
"typescript": "^5.9.2",
"webpack": "^5.101.3",
"webpack-cli": "^6.0.1"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-intl": ">=6"
},
"files": [
"dist/"
],
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./functions": "./dist/functions.js",
"./injectIntl": "./dist/injectIntl.js",
"./useIntl": "./dist/useIntl.js",
"./useSSRIntl": "./dist/useSSRIntl.js"
},
"typesVersions": {
"*": {
"functions": [
"dist/functions.d.ts"
],
"injectIntl": [
"dist/injectIntl.d.ts"
],
"useIntl": [
"dist/useIntl.d.ts"
],
"useSSRIntl": [
"dist/useSSRIntl.d.ts"
]
}
},
"sideEffects": false,
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"testPathIgnorePatterns": [
"<rootDir>/examples/"
],
"testEnvironment": "jsdom"
},
"packageManager": "yarn@3.6.3"
}