-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.03 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
{
"name": "intlized-components",
"version": "0.7.0",
"description": "React.js components for internationalization (i18n)",
"author": "Markus Wetzel <[email protected]>",
"license": "MIT",
"keywords": [
"react",
"i18n",
"intl",
"internationalization",
"hooks"
],
"repository": "https://github.com/ProAI/intlized-components.git",
"bugs": {
"url": "https://github.com/ProAI/intlized-components/issues"
},
"main": "dist/intlized-components.cjs.js",
"module": "dist/intlized-components.esm.js",
"scripts": {
"build": "packsy build",
"dev": "packsy dev",
"prepublishOnly": "packsy validate && packsy build"
},
"files": [
"dist"
],
"dependencies": {
"lodash.isstring": "^4.0.1",
"messageformat": "^2.1.0"
},
"devDependencies": {
"packsy": "0.2.4",
"react": "18.3.1"
},
"peerDependencies": {
"react": ">=16.8"
},
"husky": {
"hooks": {
"pre-commit": "packsy pre-commit"
}
},
"engines": {
"node": ">= 8",
"npm": ">= 5"
}
}