-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
87 lines (87 loc) · 2.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
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
{
"name": "@jup-ag/wallet-adapter",
"version": "0.2.1",
"license": "MIT",
"main": "dist/components.esm.js",
"module": "dist/components.esm.js",
"types": "dist/types/index.d.ts",
"type": "module",
"files": [
"dist"
],
"babelMacros": {
"twin": {
"config": "tailwind.config.js",
"preset": "emotion"
}
},
"sideEffects": false,
"scripts": {
"type-check": "tsc --noEmit",
"type-check:watch": "pnpm type-check -- --watch",
"build:types": "tsc --noEmit false --emitDeclarationOnly --outDir dist/types",
"build:js": "rollup -c",
"build-lib": "pnpm build:types && pnpm build:js",
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start -p 3001",
"serve": "npx serve public"
},
"peerDependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@solana/spl-token": "*",
"@solana/web3.js": ">=1.77.3",
"decimal.js": ">=10.4.3",
"react": ">=18",
"styled-components": "*"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@solana-mobile/wallet-adapter-mobile": "^2.0.0",
"@solana/wallet-adapter-base": "0.9.23",
"@solana/wallet-adapter-react": "0.15.35",
"react-use": ">=17.2.4"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@emotion/babel-preset-css-prop": "^11.10.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@solana/spl-token": "0.1.8",
"@solana/spl-token-registry": "~0.2.1105",
"@solana/wallet-adapter-wallets": "0.19.32",
"@solflare-wallet/wallet-adapter": "~1.0.3",
"@solana/web3.js": "^1.77.3",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/react-syntax-highlighter": "^15.5.6",
"@types/styled-components": "^5.1.26",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.0",
"babel-plugin-macros": "^3.1.0",
"decimal.js": "^10.4.3",
"lokijs": "1.5.12",
"next": "^13.4.9",
"postcss": "^8.4.20",
"prettier": "^3.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-syntax-highlighter": "^15.5.0",
"rollup": "^3.7.3",
"rollup-plugin-node-externals": "^6.1.1",
"sonner": "^0.4.0",
"styled-components": "^5.3.6",
"tailwindcss": "^3.2.4",
"twin.macro": "^3.1.0",
"typescript": "^4.9.4"
},
"resolutions": {
"@solana/wallet-adapter-base": "0.9.23"
}
}