-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.15 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
{
"name": "@dao-dao/cosmiframe",
"version": "1.0.0-rc.0",
"description": "Facilitate iframe message passthrough for Cosmos wallets",
"author": "Noah Saso <noah@daodao.zone>",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "eslint .",
"format": "eslint . --fix",
"build": "tsup",
"build:watch": "tsup --watch"
},
"license": "BSD-3-Clause-Clear",
"devDependencies": {
"@cosmjs/amino": "^0.32.3",
"@cosmjs/proto-signing": "^0.32.3",
"@keplr-wallet/types": "^0.12.83",
"@swc/core": "^1.4.16",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unused-imports": "^3.0.0",
"prettier": "^3.2.4",
"tsup": "^8.0.2",
"typescript": "^5.3.3"
},
"dependencies": {
"uuid": "^9.0.1"
},
"peerDependencies": {
"@cosmjs/amino": ">= ^0.32",
"@cosmjs/proto-signing": ">= ^0.32"
}
}