-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.71 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.71 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
74
75
76
77
78
79
80
{
"name": "@aptos-labs/cross-chain-core",
"version": "6.1.2",
"description": "Aptos Cross Chain Core",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"license": "Apache-2.0",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/aptos-labs/aptos-wallet-adapter.git"
},
"homepage": "https://github.com/aptos-labs/aptos-wallet-adapter",
"bugs": {
"url": "https://github.com/aptos-labs/aptos-wallet-adapter/issues"
},
"author": "aptoslabs.com",
"keywords": [
"Aptos",
"Aptos Labs",
"Wallet",
"Wallet Adapter",
"Aptos Wallet"
],
"scripts": {
"update-version": "node -p \"'export const CROSS_CHAIN_CORE_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts",
"build-package": "export $(cat .env | xargs) && pnpm build:bundle && pnpm build:declarations",
"build:bundle": "tsup src/index.ts --format cjs,esm --sourcemap --env.GAID $GAID",
"build:declarations": "tsc --emitDeclarationOnly --declaration --declarationMap",
"build": "pnpm run update-version && pnpm run build-package",
"dev": "export $(cat .env | xargs) && tsup src/index.ts --format esm,cjs --watch --dts --env.GAID $GAID",
"test": "vitest run",
"lint": "biome lint src",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"devDependencies": {
"@aptos-labs/wallet-adapter-tsconfig": "workspace:*",
"@types/node": "^20.10.4",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"vitest": "^3.2.6"
},
"dependencies": {
"@aptos-labs/derived-wallet-ethereum": "workspace:*",
"@aptos-labs/derived-wallet-solana": "workspace:*",
"@aptos-labs/derived-wallet-sui": "workspace:*",
"@aptos-labs/gas-station-client": "^2.0.3",
"@aptos-labs/wallet-adapter-core": "workspace:*",
"@aptos-labs/wallet-standard": "^0.5.2",
"@mysten/sui": "1.24.0",
"@mysten/wallet-standard": "^0.13.29",
"@solana/spl-token": "^0.4.12",
"@solana/wallet-adapter-base": "^0.9.23",
"@solana/wallet-standard-wallet-adapter-base": "^1.1.4",
"@solana/web3.js": "^1.95.8",
"@wallet-standard/app": "^1.1.0",
"@wormhole-foundation/sdk": "4.7.1",
"@wormhole-foundation/sdk-aptos": "4.7.1",
"@wormhole-foundation/sdk-evm": "4.7.1",
"@wormhole-foundation/sdk-solana": "4.7.1",
"@wormhole-foundation/sdk-sui": "4.7.1",
"bs58": "^6.0.0",
"buffer": "^6.0.3",
"ethers": "^6.13.5",
"eventemitter3": "^4.0.7",
"tweetnacl": "^1.0.3"
},
"peerDependencies": {
"@aptos-labs/ts-sdk": "^5.1.1"
},
"files": [
"dist",
"src"
]
}