forked from hyperweb-io/cosmos-kit
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.62 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
{
"name": "@cosmos-kit/tailwind-extension",
"version": "1.2.0",
"description": "Cosmos-kit adapter for Tailwind extension",
"author": "bao@tailwind.zone",
"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",
"test": "__tests__"
},
"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",
"cosmos-kit",
"tailwind",
"wallet"
],
"bugs": {
"url": "https://github.com/cosmology-tech/cosmos-kit/issues"
},
"jest": {
"testPathIgnorePatterns": [
"dist/"
]
},
"dependencies": {
"@cosmos-kit/core": "^2.10.0"
},
"devDependencies": {
"@cosmjs/proto-signing": "^0.32.3",
"@tailwindzone/connect": "^1.1.0"
}
}