-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.02 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
{
"name": "state_channel_react",
"version": "0.0.4",
"description": "React bindings for StateChannel - allows for storing React state in a PhoenixChannel",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run clean && npx esbuild src/index.jsx --outfile=dist/index.cjs.js --format=cjs && esbuild src/index.jsx --outfile=dist/index.esm.js --format=esm",
"clean": "rimraf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amberbit/state_channel_react.git"
},
"keywords": [
"react",
"state"
],
"author": "Hubert Łępicki",
"license": "MIT",
"bugs": {
"url": "https://github.com/amberbit/state_channel_react/issues"
},
"homepage": "https://github.com/amberbit/state_channel_react#readme",
"devDependencies": {
"esbuild": "^0.16.1",
"rimraf": "^3.0.2"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rfc6902": "^5.0.1"
}
}