forked from akash-network/akashjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.68 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"author": "",
"browser": {
"fs": false,
"os": false,
"path": false
},
"dependencies": {
"@cosmjs/launchpad": "^0.27.1",
"@cosmjs/proto-signing": "^0.31.1",
"@cosmjs/stargate": "^0.31.1",
"@cosmjs/tendermint-rpc": "^0.31.1",
"asn1js": "^3.0.5",
"atob": "^2.1.2",
"axios": "^1.5.0",
"console-browserify": "^1.2.0",
"cosmwasm": "^1.1.1",
"js-yaml": "^4.1.0",
"json-stable-stringify": "^1.0.2",
"keytar": "^7.9.0",
"node-fetch": "3",
"pkijs": "^3.0.15",
"process": "^0.11.10",
"pvutils": "^1.1.3",
"simple-jsonrpc-js": "^1.2.0"
},
"description": "Akash Network JS SDK",
"devDependencies": {
"@types/atob": "^2.1.2",
"@types/js-yaml": "^4.0.6",
"@types/json-stable-stringify": "^1.0.34",
"@types/node-fetch": "2",
"@types/sinon": "^10.0.16",
"@types/tap": "^15.0.9",
"rimraf": "^5.0.1",
"sinon": "^16.0.0",
"tap": "^18.0.1",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"ts-proto": "^1.157.0",
"typescript": "^5.2.2"
},
"engines": {
"node": ">18.0.0"
},
"files": [
"umd/",
"build/**/*.d.ts",
"build/**/*.js"
],
"license": "Apache-2.0",
"main": "build/index.js",
"name": "@leonmw/akashjs",
"repository": {
"url": "https://github.com/ovrclk/akashjs"
},
"scripts": {
"build": "rimraf build && npm run build:tsc",
"build:production": "set NODE_ENV=test&& npm run build:tsc",
"build:tsc": "rimraf build && npx tsc",
"dev:watch": "npx tsc -- --watch",
"prepublishOnly": "npm run build:production",
"test": "npm run test:unit",
"test:unit": "tap --ts tests/test_*.ts"
},
"types": "build/",
"version": "0.5.13"
}