-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.09 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
{
"name": "blest-react",
"version": "1.1.2",
"description": "A React client for BLEST (Batch-able, Lightweight, Encrypted State Transfer), an improved communication protocol for web APIs which leverages JSON, supports request batching by default, and provides a modern alternative to REST.",
"keywords": [
"blest",
"api",
"js",
"javascript",
"typescript",
"react",
"reactjs",
"react-native"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/jhuntdev/blest-react"
},
"homepage": "https://blest.jhunt.dev",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"author": "JHunt <hello@jhunt.dev>",
"license": "MIT",
"peerDependencies": {
"react": "16.14 - 19"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/lodash": "^4.17.13",
"@types/react": "^19.0.2",
"react": "^19.0.0",
"typescript": "^5.7.2"
}
}