-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.74 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.74 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
{
"name": "mintme-widget",
"version": "3.1.29",
"description": "A lightweight widget to connect to Solana and mint tokens with mintme.dev",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"./next": {
"import": "./dist/index.next.mjs"
},
"files": [
"dist"
],
"scripts": {
"dev": "vite build --watch --mode development",
"dev:fast": "vite build --watch --mode development --minify false",
"dev:debug": "NODE_ENV=development vite build --watch --mode development --minify false --sourcemap",
"build:types": "tsc --emitDeclarationOnly --pretty",
"build": "vite build --sourcemap",
"build_tsc": "npm run build:types && vite build",
"preview": "vite preview",
"release:patch": "npm run build && npm version patch && npm publish --access public"
},
"dependencies": {
"axios": "^1.9.0",
"mintme-sdk": "^1.2.8",
"pinata": "^2.4.9",
"styled-components": "^6.1.17",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@solana/wallet-adapter-base": "^0.9.23",
"@solana/wallet-adapter-react": "^0.15.35",
"@solana/wallet-adapter-react-ui": "^0.9.34",
"@solana/wallet-adapter-wallets": "^0.19.25",
"@solana/web3.js": "^1.87.6",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/styled-components": "^5.1.34",
"@vitejs/plugin-react": "^4.0.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.0.2",
"vite": "^4.5.14",
"vite-plugin-dts": "^3.6.3"
},
"peerDependencies": {
"react": "^18 || ^19",
"react-dom": "^18 || ^19"
}
}