forked from pontem-network/plugin-wallet-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.06 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
{
"name": "@pontem/wallet-adapter-plugin",
"version": "0.2.0",
"description": "Pontem plugin to use with Aptos Wallet Adapter",
"author": "Pontem Network",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"license": "MIT",
"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",
"aptos": "^1.9.1"
},
"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/pontem-network/plugin-wallet-adapter.git"
},
"keywords": [
"aptos",
"wallet"
],
"bugs": {
"url": "https://github.com/pontem-network/plugin-wallet-adapter/issues"
},
"homepage": "https://github.com/pontem-network/plugin-wallet-adapter#readme"
}