-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
42 lines (42 loc) · 1.11 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
{
"name": "@regen-network/api",
"version": "v1.0.0-alpha6",
"author": "[email protected]",
"description": "Javascript API for Regen Ledger",
"main": "index.js",
"module": "esm/index.js",
"types": "index.d.ts",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/regen-network/regen-js"
},
"bugs": {
"url": "https://github.com/regen-network/regen-js/issues"
},
"publishConfig": {
"access": "public",
"directory": "dist"
},
"scripts": {
"copy": "copyfiles -f ../../LICENSE README.md package.json dist",
"clean": "rimraf dist/**",
"prepare": "npm run build",
"codegen": "ts-node scripts/codegen.ts",
"build": "npm run clean; tsc; tsc -p tsconfig.esm.json; npm run copy",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@cosmology/telescope": "^1.5.2"
},
"dependencies": {
"@cosmjs/encoding": "0.31.0",
"@cosmjs/math": "0.31.0",
"@cosmjs/amino": "0.31.0",
"@cosmjs/proto-signing": "0.31.0",
"@cosmjs/stargate": "0.31.0",
"@cosmology/lcd": "^0.13.4"
},
"keywords": []
}