forked from messageformat/messageformat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 868 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 868 Bytes
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
{
"name": "@messageformat/react",
"version": "1.0.0",
"description": "React hooks and other bindings for messages",
"repository": {
"type": "git",
"url": "https://github.com/messageformat/messageformat.git",
"directory": "packages/react"
},
"keywords": [
"i18n",
"React",
"context",
"messages",
"messageformat",
"provider"
],
"contributors": [
"Eemeli Aro <eemeli@gmail.com>"
],
"license": "MIT",
"homepage": "http://messageformat.github.io/messageformat/api/react/",
"main": "lib/index.js",
"exports": {
".": "./lib/index.js",
"./package.json": "./package.json"
},
"files": [
"lib/"
],
"sideEffects": false,
"scripts": {
"build": "tsc --project tsconfig.build.json",
"extract-api": "api-extractor run --verbose"
},
"peerDependencies": {
"react": ">=16.8.0"
}
}