-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 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
{
"name": "@xlabs-libs/wallet-aggregator-terra",
"repository": "https://github.com/XLabs/wallet-aggregator-sdk/tree/master/packages/wallets/terra",
"version": "0.0.1-alpha.7",
"sideEffects": false,
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build": "shx rm -rf dist && npm run build:cjs && npm run build:esm",
"clean": "shx rm -rf dist",
"prepublish": "npm run build"
},
"files": [
"dist/",
"src/"
],
"devDependencies": {
"@types/node": "^18.11.9",
"shx": "^0.3.4",
"typescript": "^5.3.2"
},
"dependencies": {
"@terra-money/terra.js": "^3.1.7",
"@terra-money/wallet-provider": "^3.11.2",
"@xlabs-libs/wallet-aggregator-core": "workspace:^",
"rxjs": "^7.5.7"
}
}