-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.44 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
{
"name": "hyperwebjs",
"version": "0.0.5",
"author": "Hyperweb <[email protected]>",
"description": "JS client for Hyperweb",
"main": "index.js",
"module": "esm/index.js",
"types": "index.d.ts",
"homepage": "https://github.com/hyperweb-io/hyperweb-build",
"license": "SEE LICENSE IN LICENSE",
"publishConfig": {
"access": "public",
"directory": "dist"
},
"repository": {
"type": "git",
"url": "https://github.com/hyperweb-io/hyperweb-build"
},
"bugs": {
"url": "https://github.com/hyperweb-io/hyperweb-build/issues"
},
"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; npm run codegen; tsc; tsc -p tsconfig.esm.json; npm run copy",
"build:dev": "npm run clean; npm run codegen; tsc --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
"lint": "eslint . --fix",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@cosmology/telescope": "^1.10.0",
"prettier": "2.8.8",
"rimraf": "^6.0.1"
},
"dependencies": {
"@cosmjs/amino": "0.32.3",
"@cosmjs/encoding": "0.32.3",
"@cosmjs/math": "0.32.3",
"@cosmjs/proto-signing": "0.32.3",
"@cosmjs/stargate": "0.32.3",
"@cosmology/lcd": "^0.14.0"
},
"keywords": [],
"gitHead": "9cd7d6a148f412b070d4cfdea94e966eb80ef2b8"
}