forked from cosmology-tech/cosmos-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.57 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
{
"name": "@cosmos-kit/station",
"version": "2.5.9",
"description": "@cosmos-kit/station is the Station integration for CosmosKit",
"author": "[email protected]",
"contributors": [
{
"name": "Javier Aceña"
}
],
"homepage": "https://github.com/cosmology-tech/cosmos-kit#readme",
"license": "SEE LICENSE IN LICENSE",
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "cjs/index.d.ts",
"directories": {
"lib": "src"
},
"files": [
"cjs",
"esm",
"!CHANGELOG.md",
"!LICENSE"
],
"scripts": {
"build:cjs": "yarn tsc -p tsconfig.json --outDir cjs --module commonjs || true",
"build:esm": "yarn tsc -p tsconfig.json --outDir esm --module es2022 || true",
"clean:cjs": "rimraf cjs",
"clean:esm": "rimraf esm",
"clean": "npm run clean:cjs && npm run clean:esm",
"build": "npm run clean && npm run build:cjs && npm run build:esm",
"prepare": "npm run build",
"lint": "eslint --ext .tsx,.ts .",
"format": "eslint --ext .tsx,.ts --fix .",
"test": "jest",
"test:watch": "jest --watch",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/cosmology-tech/cosmos-kit"
},
"keywords": [
"cosmos-kit",
"cosmos",
"station",
"wallet"
],
"bugs": {
"url": "https://github.com/cosmology-tech/cosmos-kit/issues"
},
"dependencies": {
"@cosmos-kit/station-extension": "^2.6.9"
},
"gitHead": "2b5f2de5d9ed1580be4137736dfc6cce779679d1"
}