-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.51 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
{
"name": "buddy-drops",
"version": "0.1.0",
"description": "The Buddy Drops raffle sdk",
"private": true,
"main": "./dist/index.cjs.js",
"types": "./dist/index.d.ts",
"license": "Apache-2.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@solana/wallet-adapter-base": "0.9.23",
"@solana/wallet-adapter-react": "0.15.35",
"@solana/wallet-adapter-react-ui": "0.9.35",
"@solana/wallet-adapter-wallets": "0.19.32",
"@solana/web3.js": "1.93.0",
"buddy.buy": "0.2.4",
"next": "14.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"styled-components": "6.1.11"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"postcss": "^8",
"sharp": "^0.33.4",
"tailwindcss": "^3.4.1",
"typescript": "^5",
"@vitejs/plugin-react": "4.2.1",
"jsdoc": "4.0.2",
"jsdom": "24.0.0",
"react-dom": "^18.1.0",
"vite": "^5.3.2",
"vite-plugin-dts": "^3.7.2",
"vite-plugin-env-compatible": "^2.0.1",
"vite-plugin-node-polyfills": "^0.21.0",
"vitest": "1.3.0"
},
"exports": {
".": {
"require": "./dist/index.cjs.js",
"import": "./dist/index.es.js",
"default": "./dist/index.cjs.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}