forked from Creit-Tech/Stellar-Wallets-Kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.68 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": "@creit.tech/stellar-wallets-kit",
"version": "0.9.1",
"description": "A kit to handle all Stellar Wallets at once",
"author": {
"name": "Creit Technologies LLP",
"url": "https://creit.tech"
},
"main": "index.cjs",
"module": "index.js",
"types": "index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/Creit-Tech/Stellar-Wallets-Kit.git"
},
"keywords": [
"Stellar",
"Stellar Wallets",
"Wallet",
"Wallets",
"Albedo",
"xBull Wallet",
"Rabet",
"Freighter"
],
"scripts": {
"build": "rimraf ./build && rollup -c && tsc --emitDeclarationOnly true --outDir ./build -p ./tsconfig.json",
"copyfiles": "cp ./package.json ./build && cp ./LICENSE ./build && cp ./README.md ./build && cp ./CHANGELOG.md ./build",
"all": "pnpm run build && pnpm run copyfiles"
},
"engines": {
"node": ">=16"
},
"dependencies": {
"@albedo-link/intent": "0.12.0",
"@creit-tech/xbull-wallet-connect": "github:Creit-Tech/xBull-Wallet-Connect#0.2.0",
"@lobstrco/signer-extension-api": "1.0.0-beta.0",
"@stellar/freighter-api": "2.0.0",
"@walletconnect/modal": "2.6.2",
"@walletconnect/sign-client": "2.11.2",
"events": "3.3.0",
"lit": "2.8.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"@walletconnect/types": "^2.13.1",
"@web/dev-server": "^0.1.31",
"@webcomponents/webcomponentsjs": "^2.6.0",
"esbuild": "^0.21.5",
"eslint": "^8.15.0",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"rollup": "^4.18.0",
"rollup-plugin-esbuild": "^6.1.1",
"typescript": "~4.7.4"
}
}