This repository has been archived by the owner on Dec 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
76 lines (76 loc) · 2.25 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
69
70
71
72
73
74
75
76
{
"name": "cosmwasm",
"version": "1.1.1",
"description": "A wrapper package for all relevant cosmjs packages.",
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf ./build && tsc",
"lint": "eslint --max-warnings 0 \"./src/**/*.ts\"",
"fix": "eslint --fix \"./src/**/*.ts\"",
"webpack": "npx webpack"
},
"bin": "src/cli/bin/cli",
"repository": {
"type": "git",
"url": "git+https://github.com/CosmWasm/CosmWasmJS.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"contributors": [
{
"name": "Simon Warta",
"email": "[email protected]"
},
{
"name": "Milan Steiner",
"email": "[email protected]"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/CosmWasm/CosmWasmJS/issues"
},
"homepage": "https://github.com/CosmWasm/CosmWasmJS#readme",
"dependencies": {
"@cosmjs/amino": "^0.28.9",
"@cosmjs/cli": "^0.28.9",
"@cosmjs/cosmwasm-stargate": "^0.28.9",
"@cosmjs/crypto": "^0.28.9",
"@cosmjs/encoding": "^0.28.9",
"@cosmjs/faucet-client": "^0.28.9",
"@cosmjs/ledger-amino": "^0.28.9",
"@cosmjs/math": "^0.28.9",
"@cosmjs/proto-signing": "^0.28.9",
"@cosmjs/stargate": "^0.28.9",
"@cosmjs/utils": "^0.28.9",
"@cosmostation/cosmos-client": "^0.0.1"
},
"devDependencies": {
"@types/ledgerhq__hw-transport": "^4.21.4",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"buffer": "^6.0.3",
"bufferutil": "^4.0.6",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"path-browserify": "^1.0.1",
"prettier": "^2.5.1",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"ts-loader": "^9.2.7",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "^4.5.5",
"utf-8-validate": "^5.0.8",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
}
}