@jup-ag/plugin 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -0
- package/dist/global.css +1953 -0
- package/dist/index.css +1906 -0
- package/dist/index.css.map +1 -0
- package/dist/index.d.ts +311 -0
- package/dist/index.js +4074 -0
- package/dist/index.js.map +1 -0
- package/package.json +108 -0
package/package.json
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@jup-ag/plugin",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"dev": "next dev",
|
|
8
|
+
"build": "next build",
|
|
9
|
+
"tsup": "tsup && npx tailwindcss --yes -i ./src/styles/globals.css -o ./dist/global.css",
|
|
10
|
+
"start": "next start",
|
|
11
|
+
"lint": "next lint",
|
|
12
|
+
"format:fix": "prettier --write src",
|
|
13
|
+
"build-widget": "NODE_ENV=production MODE=widget webpack",
|
|
14
|
+
"analyse": "NODE_ENV=production MODE=widget ANALYSE=true webpack"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist"
|
|
18
|
+
],
|
|
19
|
+
"exports": {
|
|
20
|
+
".": "./dist/index.js",
|
|
21
|
+
"./tailwind": "./dist/tailwind.config.js",
|
|
22
|
+
"./css": "./dist/global.css"
|
|
23
|
+
},
|
|
24
|
+
"typesVersions": {
|
|
25
|
+
"*": {
|
|
26
|
+
"index": [
|
|
27
|
+
"dist/index.d.ts"
|
|
28
|
+
]
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"peerDependencies": {
|
|
32
|
+
"@solana/spl-token": "^0.1.8",
|
|
33
|
+
"@solana/web3.js": "^1.87.6",
|
|
34
|
+
"react": "^18",
|
|
35
|
+
"react-dom": "^18"
|
|
36
|
+
},
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@jup-ag/wallet-adapter": "0.2.3",
|
|
39
|
+
"@popperjs/core": "^2.11.8",
|
|
40
|
+
"@solana/wallet-adapter-wallets": "0.19.33",
|
|
41
|
+
"@tanstack/react-query": "^4.36.1",
|
|
42
|
+
"bn.js": "5.2.1",
|
|
43
|
+
"clsx": "^2.1.1",
|
|
44
|
+
"decimal.js": "10.4.3",
|
|
45
|
+
"jotai": "^2.8.3",
|
|
46
|
+
"jsbi": "4.3.0",
|
|
47
|
+
"lodash.debounce": "^4.0.8",
|
|
48
|
+
"next": "13.4.19",
|
|
49
|
+
"next-seo": "5.15.0",
|
|
50
|
+
"react-colorful": "^5.6.1",
|
|
51
|
+
"react-hook-form": "7.42.1",
|
|
52
|
+
"react-number-format": "5.1.3",
|
|
53
|
+
"react-popper": "^2.3.0",
|
|
54
|
+
"react-syntax-highlighter": "^15.5.0",
|
|
55
|
+
"react-use": "^17.5.0",
|
|
56
|
+
"react-virtualized-auto-sizer": "1.0.7",
|
|
57
|
+
"react-window": "1.8.8",
|
|
58
|
+
"superstruct": "1.0.3",
|
|
59
|
+
"tailwind-merge": "^2.5.2",
|
|
60
|
+
"tailwindcss-animate": "^1.0.7"
|
|
61
|
+
},
|
|
62
|
+
"devDependencies": {
|
|
63
|
+
"@svgr/webpack": "^6.5.1",
|
|
64
|
+
"@types/bn.js": "^5.1.5",
|
|
65
|
+
"@types/bs58": "^4.0.4",
|
|
66
|
+
"@types/lodash.debounce": "^4.0.9",
|
|
67
|
+
"@types/node": "18.11.5",
|
|
68
|
+
"@types/react": "18.0.23",
|
|
69
|
+
"@types/react-dom": "18.0.7",
|
|
70
|
+
"@types/react-syntax-highlighter": "^15.5.13",
|
|
71
|
+
"@types/react-virtualized-auto-sizer": "~1.0.4",
|
|
72
|
+
"@types/react-window": "~1.8.8",
|
|
73
|
+
"autoprefixer": "10.4.13",
|
|
74
|
+
"css-loader": "^6.11.0",
|
|
75
|
+
"css-minimizer-webpack-plugin": "^4.2.2",
|
|
76
|
+
"cssnano": "^5.1.15",
|
|
77
|
+
"esbuild-plugins-node-modules-polyfill": "^1.6.6",
|
|
78
|
+
"eslint": "8.26.0",
|
|
79
|
+
"eslint-config-next": "13.0.0",
|
|
80
|
+
"eslint-config-prettier": "^8.10.0",
|
|
81
|
+
"mini-css-extract-plugin": "^2.9.0",
|
|
82
|
+
"next-transpile-modules": "10.0.0",
|
|
83
|
+
"node-polyfill-webpack-plugin": "^2.0.1",
|
|
84
|
+
"postcss": "^8.4.38",
|
|
85
|
+
"postcss-loader": "^7.3.4",
|
|
86
|
+
"postcss-preset-env": "^7.8.3",
|
|
87
|
+
"prettier": "^3.3.2",
|
|
88
|
+
"react-twitter-embed": "^4.0.4",
|
|
89
|
+
"sass": "^1.77.6",
|
|
90
|
+
"sass-loader": "^13.3.3",
|
|
91
|
+
"style-loader": "^3.3.4",
|
|
92
|
+
"stylus": "^0.59.0",
|
|
93
|
+
"svg-inline-loader": "^0.8.2",
|
|
94
|
+
"tailwindcss": "3.3.3",
|
|
95
|
+
"ts-loader": "^9.5.1",
|
|
96
|
+
"tsup": "8.2.4",
|
|
97
|
+
"typescript": "5.2.2",
|
|
98
|
+
"webpack": "^5.92.1",
|
|
99
|
+
"webpack-bundle-analyzer": "^4.10.2",
|
|
100
|
+
"webpack-cli": "^4.10.0"
|
|
101
|
+
},
|
|
102
|
+
"pnpm": {
|
|
103
|
+
"overrides": {
|
|
104
|
+
"@solana/web3.js": "1.87.6",
|
|
105
|
+
"@solana/buffer-layout": "4.0.0"
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
}
|