-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 1.15 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
{
"name": "react-vrpc",
"version": "3.2.1",
"description": "React wrapper around the vrpc library",
"repository": "https://github.com/heisenware/vrpc-react",
"author": "Burkhard Heisen <burkhard.heisen@heisenware.com>",
"contributors": [
"Jacob Evans",
"Benjamin Joham"
],
"homepage": "https://vrpc.io",
"main": "lib/index.js",
"license": "Apache-2.0",
"keywords": [
"react",
"vrpc",
"react-vrpc",
"remote procedural calls",
"communication",
"backend",
"async",
"iot"
],
"peerDependencies": {
"vrpc": "^3.1.0"
},
"devDependencies": {
"@babel/cli": "^7.18.9",
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-react": "^7.18.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.1"
},
"scripts": {
"build:lib": "./node_modules/.bin/babel src --out-dir lib --copy-files",
"build:ex1": "./examples/vrpc-react-todos-1/test/install.sh",
"build:ex2": "./examples/vrpc-react-todos-2/test/install.sh",
"test:ex1": "./examples/vrpc-react-todos-1/test/test.sh",
"test:ex2": "./examples/vrpc-react-todos-2/test/test.sh"
}
}