-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
95 lines (95 loc) · 2.6 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "ethos-connect",
"version": "0.0.194",
"description": "Build on Sui with ease with the Ethos Wallet APIs. Connect with all wallets and users with no wallet.",
"main": "dist/index.cjs",
"typings": "dist/index.d.ts",
"module": "dist/ethos-connect.esm.js",
"license": "MIT",
"files": [
"README.md",
"dist"
],
"exports": {
"import": "./dist/ethos-connect.esm.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"type": "module",
"sideEffects": false,
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EthosWallet/react-api.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "./scripts/build.sh --external:react --external:react-dom",
"watch": "./scripts/watch.sh --external:react --external:react-dom",
"test": "./scripts/test.sh",
"test:watch": "./scripts/test.sh --watch",
"test:snapshot": "npx jest --update-snapshot",
"lint": "./scripts/lint.sh",
"playground": "yarn workspace playground-react dev",
"clean": "rimraf ./dist"
},
"peerDependencies": {
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@microsoft/eslint-formatter-sarif": "2.1.7",
"@swc/core": "^1.2.197",
"@swc/jest": "^0.2.21",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.0.0",
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^28.1.0",
"@types/lodash-es": "^4.17.7",
"@types/qrcode": "^1.4.2",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-google-recaptcha": "^2.1.5",
"@types/react-test-renderer": "^18.0.0",
"esbuild": "^0.11.18",
"fast-glob": "^3.2.11",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"prettier": "^2.6.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rimraf": "^3.0.2",
"snapshot-diff": "^0.8.1",
"typescript": "^4.7.3"
},
"dependencies": {
"@mysten/sui.js": "^0.42.0",
"@mysten/wallet-kit-core": "^0.6.3",
"@open-rpc/client-js": "^1.8.1",
"@superstate/react": "^0.1.0",
"bignumber.js": "^9.1.1",
"cross-fetch": "^3.1.5",
"encoding": "^0.1.13",
"eslint": "^8.36.0",
"events": "^3.3.0",
"lodash-es": "^4.17.21",
"qrcode": "^1.5.1",
"react-google-recaptcha": "^2.1.0",
"store2": "^2.14.2"
},
"lint-staged": {
"*": "yarn lint"
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
}
}