forked from akash-network/akashjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.63 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.63 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@akashnetwork/akashjs",
"version": "0.0.30",
"description": "Akash Network JS SDK",
"repository": {
"url": "https://github.com/ovrclk/akashjs"
},
"main": "build/index.js",
"types": "build/",
"scripts": {
"build": "rm -rf build/ && yarn build:tsc && yarn build:build",
"build:production": "NODE_ENV=production yarn build:tsc && yarn build:build",
"build:tsc": "yarn tsc",
"dev:watch": "yarn tsc -- --watch",
"build:build": "yarn webpack",
"test": "yarn test:unit",
"test:unit": "tap --ts tests/test_*.ts",
"prepublishOnly": "yarn build:production"
},
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@cosmjs/launchpad": "^0.27.0",
"@cosmjs/proto-signing": "^0.25.4",
"@cosmjs/stargate": "^0.28.0",
"@cosmjs/tendermint-rpc": "^0.25.4",
"asn1js": "^2.1.1",
"atob": "^2.1.2",
"axios": "^0.24.0",
"console-browserify": "^1.2.0",
"cosmwasm": "^1.1.1",
"keytar": "^7.7.0",
"node-fetch": "2",
"pkijs": "^2.1.95",
"process": "^0.11.10",
"pvutils": "^1.0.17",
"simple-jsonrpc-js": "^1.2.0"
},
"devDependencies": {
"@types/atob": "^2.1.2",
"@types/node-fetch": "2",
"@types/sinon": "^10.0.11",
"@types/tap": "^15.0.5",
"node-polyfill-webpack-plugin": "^1.1.4",
"sinon": "^13.0.1",
"tap": "^15.1.6",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"ts-proto": "^1.104.0",
"typescript": "^4.3.4",
"webpack": "^5.41.1",
"webpack-cli": "^4.7.2"
},
"browser": {
"fs": false,
"os": false,
"path": false
},
"files": [
"umd/",
"build/**/*.d.ts",
"build/**/*.js"
]
}