forked from suiet/wallet-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.55 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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@suiet/wallet-adapter",
"version": "0.0.18",
"description": "Integration of Suiet Wallet into the Sui Wallet Adapter",
"license": "GPL",
"author": "Bruski <[email protected]>",
"main": "dist/index.cjs",
"module": "dist/index.js",
"browser": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "rollup -c rollup.config.ts --watch",
"build": "npm run clean && cross-env NODE_ENV=production rollup -c rollup.config.ts",
"clean": "rimraf dist/"
},
"dependencies": {
"@mysten/sui.js": "0.11.0",
"@mysten/wallet-adapter-base": "0.1.0",
"@wallet-standard/features": "0.1.0-alpha.0",
"borsh": "^0.7.0",
"buffer": "^6.0.3"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/preset-env": "^7.19.3",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-typescript": "^8.5.0",
"core-js": "^3.25.4",
"cross-env": "^7.0.3",
"rimraf": "^3.0.2",
"rollup": "^2.79.1",
"rollup-plugin-polyfill-node": "^0.10.2",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.4.0",
"typescript": "^4.8.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/suiet/wallet-adapter.git"
},
"bugs": {
"url": "https://github.com/suiet/wallet-adapter/issues"
},
"homepage": "https://github.com/suiet/wallet-adapter",
"keywords": [
"sui",
"suiet",
"wallet",
"adapter"
]
}