forked from aptos-labs/wallet-adapter-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 867 Bytes
/
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
{
"name": "@nightlylabs/aptos-wallet-adapter-plugin",
"version": "0.2.2",
"description": "Nightly plugin to use with Aptos Wallet Adapter",
"author": "NB 😈 & PawelSzydlo",
"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",
"publish": "npm publish --access public"
},
"dependencies": {
"@aptos-labs/wallet-adapter-core": "^2.5.1",
"aptos": "^1.20.0",
"bs58": "^5.0.0",
"js-sha3": "^0.8.0"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"jest": "^29.6.2",
"ts-jest": "^29.1.1",
"tsup": "^6.5.0",
"typescript": "^4.9.3"
}
}