-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
77 lines (77 loc) · 1.98 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@sky-mavis/tanto-connect",
"version": "0.0.18",
"description": "Tanto Connect",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "rm -rf dist && rollup -c",
"dev": "rollup -c -w",
"lint": "node ./node_modules/eslint/bin/eslint ../.. --ext .js --fix",
"lint:fix": "eslint ../.. --ext .js,.tsx,.ts --fix",
"test": "jest"
},
"files": [
"dist"
],
"sideEffects": false,
"repository": {
"type": "git",
"url": "[email protected]:skymavis/tanto-kit.git"
},
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
},
"./dist/*": "./dist/*"
},
"keywords": [
"Ronin",
"Waypoint",
"Tanto",
"Tanto Connect",
"Tanto Kit",
"Ronin Dapps",
"Ronin Wallet",
"Ronin Network",
"Ronin Waypoint",
"Ronin Wallet SDK",
"Ronin Provider",
"Ronin Connect"
],
"author": "SkyMavis",
"license": "MIT",
"bugs": {
"url": "https://github.com/skymavis/tanto-kit/issues"
},
"homepage": "https://github.com/skymavis/tanto-kit",
"dependencies": {
"@walletconnect/ethereum-provider": "2.17.2",
"@safe-global/safe-apps-provider": "0.18.3",
"@safe-global/safe-apps-sdk": "9.1.0",
"@sky-mavis/waypoint": "4.1.0"
},
"devDependencies": {
"@babel/core": "7.23.9",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-json": "6.1.0",
"@types/jest": "29.5.11",
"@types/react": "18.0.12",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"jest": "29.7.0",
"ts-jest": "29.1.2",
"typescript": "4.9.4",
"eslint": "8.30.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "8.0.0",
"prettier": "2.8.1",
"rollup": "3.29.4",
"rollup-plugin-typescript2": "0.36.0"
}
}