forked from coderixxinfotech/bitcoin-wallet-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.05 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.05 KB
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
{
"name": "bitcoin-wallet-adapter",
"version": "1.8.2",
"description": "Bitcoin wallet adapter using MUI components",
"repository": "https://github.com/coderixxinfotech/bitcoin-wallet-adapter",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build:css": "postcss src/styles.css -o dist/styles.css",
"build:assets": "copyfiles -u 1 src/assets/* dist",
"prebuild": "rimraf dist",
"build": "tsc && yarn build:css && yarn build:assets",
"test": "jest",
"dev": "cd example && yarn && yarn dev"
},
"author": "CrypticMeta - Coderixx",
"license": "MIT",
"sideEffects": false,
"keywords": [
"bitcoin",
"wallet",
"crypto",
"adapter",
"mui",
"react"
],
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@exodus/bitcoin-wallet-standard-features": "0.0.1",
"@exodus/bitcoin-wallet-standard-react": "0.0.0",
"@mui/material": "^5.15.7",
"@reduxjs/toolkit": "^1.9.5",
"@stacks/auth": "^6.7.0",
"@stacks/connect": "^7.3.1",
"@stacks/connect-react": "^22.1.1",
"@stacks/network": "^6.5.5",
"@stacks/rpc-client": "^0.8.18",
"@wallet-standard/react": "^0.1.4",
"autoprefixer": "^10.4.15",
"axios": "^1.6.7",
"bip322-js": "^2.0.0",
"postcss": "^8.4.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"react-redux": "^8.1.2",
"redux-thunk": "^2.4.2",
"reselect": "^4.1.8",
"sats-connect": "1.4.1",
"sats-connect-v2": "npm:sats-connect@2.8.3",
"tailwindcss": "^3.3.3",
"typescript": "^5.1.6"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.5",
"copyfiles": "2.4.1",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"postcss-cli": "^10.1.0",
"react-test-renderer": "^18.2.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1"
}
}