forked from aptos-labs/wallet-adapter-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.14 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
{
"name": "@welldone-studio/aptos-wallet-adapter",
"version": "0.1.5",
"description": "WELLDONE Wallet plugin to use with Aptos Wallet Adapter",
"author": "WELLDONE Studio",
"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": "2.2.0",
"@noble/hashes": "1.1.3",
"aptos": "^1.13.3"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"tsup": "^6.5.0",
"typescript": "^4.9.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/welldonestudio/aptos-wallet-adapter.git"
},
"keywords": [
"aptos",
"wallet",
"welldone",
"dsrv"
],
"bugs": {
"url": "https://github.com/welldonestudio/aptos-wallet-adapter/issues"
},
"homepage": "https://github.com/welldonestudio/aptos-wallet-adapter#readme"
}