-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.23 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.23 KB
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
{
"name": "@interchain-kit/react",
"version": "0.9.0",
"author": "Constructive <developers@constructive.io>",
"description": "interchain-kit wallet connector react package",
"main": "index.js",
"module": "esm/index.js",
"types": "index.d.ts",
"homepage": "https://github.com/interchain-kit/react",
"license": "MIT",
"publishConfig": {
"access": "public",
"directory": "dist"
},
"repository": {
"type": "git",
"url": "https://github.com/interchain-kit/react"
},
"bugs": {
"url": "https://github.com/interchain-kit/react/issues"
},
"scripts": {
"build:css": "postcss src/styles.css -o dist/styles.css",
"clean": "makage clean",
"build": "makage build && npm run build:css",
"build:dev": "npm run clean; tsc --declarationMap; tsc -p tsconfig.esm.json; npm run copy",
"lint": "eslint . --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --watch",
"watch:dev": "tsc -w -p tsconfig.esm.json & tsc -w",
"prepack": "npm run build"
},
"keywords": [],
"dependencies": {
"@chain-registry/types": "^2.0.1",
"@interchain-kit/core": "workspace:*",
"@interchain-kit/store": "workspace:*",
"@interchain-ui/react": "^1.26.3",
"@interchainjs/cosmos": "1.21.0",
"@interchainjs/cosmos-types": "1.21.0",
"@interchainjs/types": "1.21.0",
"@react-icons/all-files": "^4.1.0",
"@walletconnect/types": "^2.17.3",
"interchainjs": "1.21.0",
"jest-transform-stub": "^2.0.0",
"postcss": "^8.5.6",
"postcss-cli": "^11.0.1",
"postcss-import": "^16.1.1",
"zustand": "^5.0.3"
},
"devDependencies": {
"@babel/cli": "^7.27.0",
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.10",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^15.0.0",
"@testing-library/react-hooks": "^8.0.1",
"babel-jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"makage": "^0.1.12",
"ts-jest": "^29.3.0"
},
"peerDependencies": {
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
}
}