forked from informalsystems/tendermint-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.27 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": "tendermint-light-client-verifier-web",
"version": "0.1.0",
"description": "an example app to demonstrate Tendermint Light Client verification on the web using WASM",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"start": "webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/informalsystems/tendermint-rs.git"
},
"keywords": [
"tendermint",
"light-client",
"webassembly",
"wasm",
"rust",
"webpack"
],
"author": "Informal Systems <[email protected]>",
"contributors": [
"Romain Ruetschi <[email protected]>",
"Thane Thomson <[email protected]>"
],
"license": "(MIT OR Apache-2.0)",
"bugs": {
"url": "https://github.com/informalsystems/tendermint-rs/issues"
},
"homepage": "https://github.com/informalsystems/tendermint-rs",
"devDependencies": {
"copy-webpack-plugin": "^5.1.2",
"css-loader": "^5.0.2",
"file-loader": "^6.2.0",
"monaco-editor-webpack-plugin": "^3.0.0",
"style-loader": "^2.0.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"monaco-editor": "^0.22.3",
"tendermint-light-client-js": "file:../../pkg"
}
}