-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1.14 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
{
"name": "purescript-web3",
"version": "7.0.0",
"description": "Collection of ethereum web3 libraries for PureScript",
"license": "ISC",
"scripts": {
"build": "spago build",
"chanterelle-docs": "cd chanterelle/docs; make html;",
"postinstall": "spago install",
"test-web3-generator": "rm -rf web3/generator/contracts/src; spago test -p web3-generator; spago build -p web3-generator-test-contracts",
"tidy": "purs-tidy format-in-place \"eth-core/**/*.purs\" \"web3/**/*.purs\" \"web3-generator/**/*.purs\" \"solc/**/*.purs\" \"chanterelle/**/*.purs\" \"test/**/*.purs\"",
"tidy-check": "purs-tidy check \"eth-core/**/*.purs\" \"web3/**/*.purs\" \"web3-generator/**/*.purs\" \"solc/**/*.purs\" \"chanterelle/**/*.purs\" \"test/**/*.purs\""
},
"dependencies": {
"ethjs-provider-http": "^0.1.6",
"keccak": "^3.0.0",
"rlp": "^2.0.0",
"secp256k1": "^5.0.0",
"solc": "^0.8"
},
"devDependencies": {
"openzeppelin-contracts": "^4.0.0",
"purescript": "^0.15.8",
"purescript-psa": "^0.8.2",
"purs-tidy": "^0.10.0",
"spago": "next"
},
"bin": {
"chanterelle": "chanterelle-bin.sh"
}
}