forked from aptos-labs/wallet-adapter-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 761 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 761 Bytes
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
{
"name": "@trustwallet/aptos-wallet-adapter",
"version": "0.1.6",
"description": "Trust Wallet plugin to use with Aptos Wallet Adapter",
"author": "Trust Wallet",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"license": "Apache-2.0",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"test": "jest"
},
"dependencies": {
"@aptos-labs/wallet-adapter-core": "0.1.7",
"aptos": "^1.4.0"
},
"devDependencies": {
"tsup": "^6.5.0",
"typescript": "^4.9.3",
"@types/jest": "^29.2.3",
"jest": "^29.3.1",
"ts-jest": "^29.0.3"
}
}