-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
70 lines (70 loc) · 1.96 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
64
65
66
67
68
69
70
{
"name": "@creit.tech/stellar-wallets-kit",
"version": "1.2.5",
"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": {
"dev": "rimraf ./build && rollup -c -w",
"serve": "vite",
"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": "0.3.0",
"@lobstrco/signer-extension-api": "1.0.0-beta.0",
"@ngneat/elf": "2.5.1",
"@ngneat/elf-devtools": "1.3.0",
"@ngneat/elf-entities": "5.0.2",
"@ngneat/elf-persist-state": "1.2.1",
"@stellar/freighter-api": "3.0.0",
"@walletconnect/modal": "2.6.2",
"@walletconnect/sign-client": "2.11.2",
"buffer": "6.0.3",
"events": "3.3.0",
"lit": "3.2.0",
"rxjs": "7.8.1"
},
"devDependencies": {
"@ngneat/elf-cli": "3.1.0",
"@rollup/plugin-terser": "0.4.4",
"@typescript-eslint/eslint-plugin": "8.2.0",
"@typescript-eslint/parser": "8.2.0",
"@walletconnect/types": "2.15.1",
"@webcomponents/webcomponentsjs": "2.8.0",
"esbuild": "0.23.1",
"eslint": "9.9.1",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"rollup": "4.21.0",
"rollup-plugin-esbuild": "6.1.1",
"rollup-watch": "4.3.1",
"typescript": "5.5.4",
"vite": "5.4.2"
}
}